Dart NoSQL Database
A simple, lightweight NoSQL database written in pure Dart, with support for concurrency control, indexing, pagination, transactions, and TTL.
Features
- Collections: Organize data into named collections, similar to tables in a relational database.
- Key-Value Storage: Store data as key-value pairs, allowing flexibility in your data structure.
- Concurrency Control: Uses the
synchronizedlibrary for thread-safe access to data, with locks. - Indexing: Supports in-memory indexing on specified fields for faster lookups.
- Pagination: Fetch data in chunks using
limitandoffsetto improve performance. - Transactions: Ensures atomic operations by grouping multiple changes within a transaction scope using a lock.
- TTL (Time-To-Live): Allows setting an expiry time for data, ideal for caching and temporary data management.
- Pure Dart: Built entirely in Dart, making it easy to understand and modify.
- File Persistence: Stores all data in JSON files, with a clear and well-defined structure.
Getting Started
-
Add the
simple_storagedependency:flutter pub add simple_storage -
Import:
import 'package:simple_storage/simple_storage.dart'; -
Create a Database Instance:
final db = Database('./my_database'); // Specify the storage path- The constructor argument specifies the directory where your database files will be stored.
-
Create or Access a Collection:
final users = await db.collection('users', indexes: ['age', 'name']);- The first argument is the name of the collection. If a collection with that name doesn't exist it will be created.
- The optional
indexesparameter is aList<String>of properties that should be indexed. Indexing can speed up lookups based on these properties but can also slow down insertions if used too much.
-
Store Data (with optional TTL):
- Use the
putmethod to store data using a key and a value. - The optional
ttlparameter specifies a time-to-live for the data. After that time, the data will be removed when loading from disk, or when accessing usinggetorgetAll.
- Use the
-
Retrieve Data:
- Use the
getmethod to retrieve data using a key. - If you use the
keyparameter as a field that has been indexed you should also provide thevalueto filter the results.
- Use the
-
Retrieve Data with Pagination:
- Use
getAllwithlimitandoffsetto get data in pages. - The
limitspecifies the maximum amount of data returned, and theoffsetspecifies which entry is the start of the page. - You can use the total number of users to create pagination controls.
- Use
-
Perform Operations Inside a Transaction:
- Transactions help group operations in one action that can be committed or rolled back if one of the operations fails.
-
Handle Errors:
The application throws specific errors:
DatabaseCreateException: when the database fails to create the storage directory.CollectionLoadException: when a collection fails to load from the disk.CollectionSaveException: when a collection fails to save to disk.CollectionNotFoundException: when a collection is not found.
These exceptions should be caught by the application to handle specific error cases.
Core Classes
-
Database:- Manages the storage path and access to collections.
- The
collectionmethod returns a collection for a specific name.
-
Collection:- Represents a data collection and stores data as key-value pairs, with the optional
ttl. - Methods to
put,get,getAll, anddeletedata. - Manages indexing for faster lookups based on the specified fields.
- Manages pagination for retrieving the data in chunks.
- Provides transaction capabilities using the
startTransactionmethod.
- Represents a data collection and stores data as key-value pairs, with the optional
-
Transaction:- Manages a transaction's state, to perform a series of operations atomically using locks.
- Has methods
put,delete,commitandrollbackto manage the transaction.
Error Handling
The database uses custom exception classes for clear and detailed error reporting:
DatabaseCreateExceptionCollectionLoadExceptionCollectionSaveExceptionCollectionNotFoundException
These exceptions provide specific error messages, which you can use to provide feedback to your user, and to help debug.
Contributions
Contributions are welcome! If you have ideas for enhancements or find any bugs, please feel free to:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Submit a pull request with your changes.
Limitations
- It is not a full-featured database.
- Indexes are stored in memory and might slow down the application with a large number of indexed fields or with big datasets.
- There is no support for complex queries or different types of storage formats.
- Transactions have a simple locking mechanism that might block operations.
- There is no scheduling for the TTL cleanup that will only happen when reading or retrieving all data.
- The code has not been thoroughly tested and might have edge cases.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Libraries
- simple_storage
- A library for storing and retrieving data in a key-value store.