-
Notifications
You must be signed in to change notification settings - Fork 481
Home
Joe Minichino edited this page Jul 29, 2013
·
27 revisions
LokiJS is a document oriented javascript database, somewhat similar to MongoDB. It supports indexing, querying and filtering of data collections. LokiJS also supports more advanced features such as mapReduce, transactions and lets you implement custom remote synchronization to save data to a server (or a local file on mobile).
Javascript "speaks" JSON, so data is stored in as JSON objects.
You can specify indexes to speed searches on certain object properties.
You can declare custom view functions to return result sets based on complex logic.
You can declare map and reduce functions to retrieve aggregate data from your database.