The Entity Manager package implements rational indexing & cross-shard querying at scale in your NoSQL database so you can focus on your application logic.

Traditional relational database systems like MySQL implement indexing & scaling strategies at a platform level based on schemas defined at design time.

This documentation is under construction! There is a lot to unpack here, so it will be a few weeks before I can call it done. Meanwhile, please feel free to reach out with any questions or feedback!

NoSQL platforms like DynamoDB offer far better performance at scale, but structured index & shard keys must be defined as data elements and exploited by application logic in data retrieval & cross-shard queries.

NoSQL shifts the burden of complexity from the database platform to the developer. Entity Manager sweeps it under the rug.

What is Entity Manager?

Entity Manager encapsulates a provider-agnostic, highly opinionated approach to the single-table design pattern.

With Entity Manager, you can:

  • Define related data entities & structured keys wth a simple, declarative configuration format.

  • Specify a partition sharding strategy that maximizes query performance while permitting planned, staged scaling over time.

  • Add or remove structured index keys from entity data objects with a single method call.

  • Perform paged, cross-shard, multi-index queries with a single method call.

About This Guide

Entity Manager relies heavily on TypeScript’s type system to enforce the structure of your configuration. You can use Entity Manager with Javascript, but Typescript will offer a much better developer experience.

Consequently, this documentation takes a Typescript-first approach! All discussions & code examples will assume you are using Typescript, and we will call out Javascript-specific considerations where appropriate.

Here’s a breakdown of the other sections in this guide:

  • SQL vs NoSQL – A comparison of the two database paradigms and how Entity Manager bridges the gap.

  • Evolving a NoSQL Database Schema – A deep dive into what a NoSQL database schema actually looks like and how Entity Manager simplifies the problem.

  • Entity Manager Configuration – Learn how to configure Entity Manager to reflect your data model & scaling strategy.

Updated: