Skip to content

Releases: sopherapps/scdb

scdb v0.2.1

06 Mar 21:10
Compare
Choose a tag to compare

Fixed

  • Fixed Slice Out of bounds Error when Retrieving Value that is an empty string.

scdb v0.2.0

06 Mar 21:09
25eddc7
Compare
Choose a tag to compare

Changed

  • Changed the Store::new() signature, replacing max_index_key_len option with is_search_enabled.
  • Permanently set the maximum index key length to 3
  • Changed benchmarks to compare operations when search is enabled to when search is disabled.
  • Enhanced accuracy of benchmarks for the delete, and set operations.

scdb v0.1.2

12 Jan 17:52
Compare
Choose a tag to compare

Fixed

scdb v0.1.1

12 Jan 16:43
Compare
Choose a tag to compare

Added

  • Added full-text search for keys, with pagination using store.search(term, skip, limit)

Changed

  • Changed the Store::new() signature to include max_search_index_key_length option.

scdb v0.0.1

26 Oct 16:42
Compare
Choose a tag to compare

What is New

  • This is the initial release
  • The main API get(), set(), delete(), clear(), compact() was set up.