Aerospike Rust Client Release 1.0.0 (October 29, 2020)

Aerospike Rust client version 1.0.0 was released on October 29, 2020.

This release contains an update, new features and a bug fix.

New Features

  • BREAKING CHANGE: Replace predicate expressions with new Aerospike Expression filters. Aerospike Expression filters give access to the full data type APIs (List, Map, Bit, HyperLogLog, Geospatial) and expanded metadata based filtering, to increase the power of filters in selecting records. This feature requires server version 5.2.0.4 or later. See API Changes for details. (#80) Thanks to @jonas32!
  • Support operations for the HyperLogLog (HLL) data type. (#89) Thanks to @jonas32!
  • Serde Serializers for Record and Value objects. (#85) Thanks to @jonas32!

Bug Fixes

  • Client.is_connected() returns true even after client.close() is called. (#87)