Indicium Versions Save

A simple in-memory search for collections and key-value stores.

v0.6.2

4 weeks ago

v0.6.1

2 months ago
  • 0.6.1: Removed eddie as the default string similarity crate (for now) due to a potential panic.

Full Changelog: https://github.com/leontoeides/indicium/compare/v0.6.0...v0.6.1

v0.6.0

6 months ago
  • 0.6.0: Fix for contextual fuzzy matching for Live interactive searches. In some cases Live search would return global results without properly observing the maximum_search_results setting. This has been fixed. This will improve performance and user experience.

  • 0.6.0: New, optional eddie feature which is turned on by default. When this feature is enabled, this library will utilize Ilia Schelokov's eddie crate for faster UTF-8 string distance and string similarity calculations.

  • 0.6.0: New, optional gxhash feature. ahash is still the default hasher. When this feature is enabled, this library will utilize Olivier Giniaux's bleeding edge gxhash crate for faster HashMap and HashSet hashing.

Full Changelog: https://github.com/leontoeides/indicium/compare/v0.5.2...v0.6.0

v0.5.2

7 months ago
  • 0.5.2: New, optional ahash feature which is turned on by default. When this feature is enabled, this library will utilize ahash for faster HashMap and HashSet hashing rather than the standard library's SipHash.

v0.5.1

9 months ago
  • Fixes compile failure for the experimental select2 feature and when not using fuzzy feature.