Releases: aurijs/jason
v1.5.3 Small bug fixes
v1.5.0 - Big Update
Howdy Howdy guys, hope you're having a greatfull day because today is a good day to release new version of JasonDB.
New Features
Queries now can have batch size, skip and limit:
- batchSize: The number of documents to process in each batch.
- skip: The number of documents to skip from the start of the result.
- limit: The maximum number of documents to return.
New generateMetadata option at the Collection creation method. If not set metadata creation is completely skipped.
Enhancements
New utility class Writer used at the Collection class provides a way to atomically write data to files handling concurrent write requests by queuing them. Preventing data corruption that can occur when multiple processes try to write to the same file simultaneously.
Improved cache class for faster and more smarter way of caching data. Making it more robust and reliable.
Bugs Slasheds
Metadata generation if set on, will be rightly created, using the Writer class. Also improved error handling for edge cases in database operations.