Skip to content

Releases: aurijs/jason

v1.5.3 Small bug fixes

19 Feb 12:41

Choose a tag to compare

Hey hey hey, new Release() today

Fixes

  • Made readAll() ignore _metadata file dc606a56
  • Simplify temporary prefix in writer.ts bc7d72d2
  • Resolve base path resolution issue in constructor 3be37753

Refactor

  • Remove unused imports in main.ts d84e60c6

Shout

v1.5.0 - Big Update

05 Feb 14:58

Choose a tag to compare

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.


Don't Stop Me New