aerospike-client-rust icon indicating copy to clipboard operation
aerospike-client-rust copied to clipboard

Rust client for the Aerospike database

Results 41 aerospike-client-rust issues
Sort by recently updated
recently updated
newest added

aerospike added a specific bool data type in 5.6 https://docs.aerospike.com/server/guide/data-types/scalar-data-types#boolean, after writing a bool with this data type in the python client https://aerospike-python-client.readthedocs.io/en/latest/aerospike.html#aerospike.AS_BOOL, reading from the record on the rust...

Hello, Aerospike is a great database! Master-master replication is very cool. But we are struggling to write Rust code that interfaces it. We are getting stuck on serialization and deserialization...

If the aerospike client implemented TryFrom, it would be much easier to unpack Values. It would be much easier to write this: ``` let field: i64 = value.try_into()? ``` Rather...

Hi Aerospike Team! I'm Caleb. I might have met you or your colleagues when I worked for ThreatMetrix. They were always a very happy Aerospike customer. We've been using your...

This is necessary to implement TLS as the "service" info only report the clear service port. It will be easy to expand the "services_name" to return peers-tls Required for #8

I would like to start a discussion since Aerospike v6 brings in some new functionality that would be useful for our infrastructure. Is there any plan to update this client...

This first commit includes most of the basic changes to the client to get it running on async-std and tokio. There are surely a few more spots that need work...

T: enhancement
T: performance
P2 - need to have
E: hard

I have created this GUI client - https://github.com/codekidX/sparrow for Aerospike and it is using this crate to [run queries](https://github.com/codekidX/sparrow/blob/main/src-tauri/src/main.rs#L113). On calling `batch_get` for a specific set I'm receiving the following...

The serde serializer for Float Values serializes the bits instead of the float. Already fixed on #108

Hi i Already Add Some Features and Examples to forked-repo I think it's useful for other users Some of changes i add a Entity trait for easily convert struct into...