By using this site, you agree to the Privacy Policy and Terms of Use.
Accept
World of SoftwareWorld of SoftwareWorld of Software
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Search
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
Reading: New Rust Client Enables Building Safe, High-Performance Apps with Aerospike
Share
Sign In
Notification Show More
Font ResizerAa
World of SoftwareWorld of Software
Font ResizerAa
  • Software
  • Mobile
  • Computing
  • Gadget
  • Gaming
  • Videos
Search
  • News
  • Software
  • Mobile
  • Computing
  • Gaming
  • Videos
  • More
    • Gadget
    • Web Stories
    • Trending
    • Press Release
Have an existing account? Sign In
Follow US
  • Privacy
  • Terms
  • Advertise
  • Contact
Copyright © All Rights Reserved. World of Software.
World of Software > News > New Rust Client Enables Building Safe, High-Performance Apps with Aerospike
News

New Rust Client Enables Building Safe, High-Performance Apps with Aerospike

News Room
Last updated: 2025/08/09 at 2:56 PM
News Room Published 9 August 2025
Share
SHARE

Aerospike has officially released its Rust client to support high-throughput, low-latency applications interacting with its real-time NoSQL database.

The decision to officially adopt the previously community-supported Rust client, explains Aerospike’s Brian Porter, was driven by the growing use of Rust to build high-throughput, low-latency applications across industries such as finance, telecommunications, cloud infrastructure, and embedded systems.

Organizations such as Amazon, Cloudflare, and Discord have adopted Rust to build reliable infrastructure and eliminate classes of memory-related bugs that commonly affect C/C++-based software.

The Rust client adopts an async-first concurrency model, allowing developers to choose either the Tokio crate or async-std as the underlying implementation. For legacy or mixed environments, it also includes a sub-crate that exposes a blocking I/O API.

In addition to atomic operations, the client supports batch commands to operate on multiple records in a single call. Version 2 of the client adds full support for read, write, delete, and UDF operations. It also enables to query records using both primary and secondary indexes, with support for pagination and limiting the number of returned records.

Other important features of the Rust client include support for replica policies and throttling as well as high-level representations for data model types like Exists, OrderedMap, and UnorderedMap.

The following snippet succinctly demonstrates how to run a query on a primary index to retrieve records that meet a given condition:


let client = ...
let mut policy = ScanPolicy::default();
policy.include_bin_data = false;
match client.scan(&policy, "test", "demo", None) {
    Ok(records) => {
        // process the records
    },
    Err(err) => println!("Error fetching record: {}", err),
}

Likewise, this is how you create a record by associating it to a key:


let key = as_key!("test", "myset", "mykey");
let bin = as_bin!("mybin", "myvalue");
match client.put(&policy, &key, &vec![&bin]) {
    Ok(()) => println!("Record written"),
    Err(err) => println!("Error writing record: {}", err),
}

On Aerospike’s roadmap for its Rust client are several powerful features, including support for partition queries, distributed ACID transactions, strong consistency, and full TLS support.

Aerospike offers several other client libraries to help developers build applications with its database in an idiomatic way, including Node.js, Java, Python, C, and more.

Sign Up For Daily Newsletter

Be keep up! Get the latest breaking news delivered straight to your inbox.
By signing up, you agree to our Terms of Use and acknowledge the data practices in our Privacy Policy. You may unsubscribe at any time.
Share This Article
Facebook Twitter Email Print
Share
What do you think?
Love0
Sad0
Happy0
Sleepy0
Angry0
Dead0
Wink0
Previous Article FTC reaches $100M settlement with Assurance IQ over alleged deceptive health insurance marketing
Next Article Linux-Based Lenovo Webcams’ Flaw Can Be Remotely Exploited for BadUSB Attacks
Leave a comment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Stay Connected

248.1k Like
69.1k Follow
134k Pin
54.3k Follow

Latest News

The Soundcore V20i earbuds are at their lowest-ever price — save over 50% right now
News
Apple Watch 11 — here’s the 5 biggest rumored upgrades
News
Hands-On: Foodllama For iPhone Simplifies Food Tracking With The Power Of AI – BGR
News
Accumulating bitcoin a risky digital rush by companies?
News

You Might also Like

News

The Soundcore V20i earbuds are at their lowest-ever price — save over 50% right now

2 Min Read
News

Apple Watch 11 — here’s the 5 biggest rumored upgrades

7 Min Read
News

Hands-On: Foodllama For iPhone Simplifies Food Tracking With The Power Of AI – BGR

4 Min Read

Accumulating bitcoin a risky digital rush by companies?

5 Min Read
//

World of Software is your one-stop website for the latest tech news and updates, follow us now to get the news that matters to you.

Quick Link

  • Privacy Policy
  • Terms of use
  • Advertise
  • Contact

Topics

  • Computing
  • Software
  • Press Release
  • Trending

Sign Up for Our Newsletter

Subscribe to our newsletter to get our newest articles instantly!

World of SoftwareWorld of Software
Follow US
Copyright © All Rights Reserved. World of Software.
Welcome Back!

Sign in to your account

Lost your password?