Skip to main content

At a glance

Overlap and shared capabilities

Both Worlds and document databases offer schema flexibility, allowing data structures to evolve without strict table migrations. Both support storing semi-structured metadata alongside content. The difference:
  • Document databases nest data hierarchically within document boundaries. Cross-document relationships require manual references or expensive lookup joins.
  • Worlds connects atomic facts into a unified RDF graph. Subject-predicate-object triples allow agents to query relationships across entity boundaries effortlessly.

When Worlds fits

  • You need interconnected knowledge retrieval across multiple domain entities.
  • You require SPARQL graph queries and quad provenance tracking for verifiable agent responses.
  • You want hybrid search across RDF graphs, full-text indexes, and vector embeddings.

When Document Databases fit

  • Your application data is naturally hierarchical and self-contained (e.g. user profiles, blog posts).
  • You require rapid single-key JSON document retrieval.
  • You are building general document storage workflows.