Releases: sopherapps/scdb
Releases · sopherapps/scdb
scdb v0.2.1
scdb v0.2.0
Changed
- Changed the
Store::new()
signature, replacingmax_index_key_len
option withis_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
, andset
operations.
scdb v0.1.2
Fixed
- Bumped
clokwerk
to version 0.4 to fix Seg fault in the time package
scdb v0.1.1
Added
- Added full-text search for keys, with pagination using
store.search(term, skip, limit)
Changed
- Changed the
Store::new()
signature to includemax_search_index_key_length
option.
scdb v0.0.1
What is New
- This is the initial release
- The main API
get()
,set()
,delete()
,clear()
,compact()
was set up.