Blog

Aerospike REST Client

Author's photo
Aerospike Marketing
April 15, 2019|2 min read

Earlier, in March, Aerospike launched its REST Client in conjunction with the Aerospike Connect product portfolio to help developing applications and to make it easier to integrate the Aerospike Database into enterprise infrastructure systems.

Aerospike REST Client is an easy and standard interface for the Aerospike database that enables developers to work with the Aerospike data layer. They can interface in a familiar programming language of their choice for new applications and microservices.There is a comprehensive post on Medium which describes the REST Client technical details and also provides some hands-on examples.

The Aerospike REST Client Medium post covers the following topics:

  • The new Aerospike REST Client can be used for the following functionality:

    • Support for retrieving basic information about the Aerospike Cluster. (cluster)

    • Support for single record requests. (kvs)

    • Support for single record, multiple operations. (operate)

    • Support for multiple record reads with a single request. (batch)

    • Support for info calls. (info)

    • Support Secondary Index modification. (index)

    • Support for User and Role administration. (admin) (Requires Aerospike Enterprise Edition)

    • Support Namespace/Set truncation. (truncate)

These different functionalities are exposed through distinct endpoints:/v1/cluster # Basic information about the Aerospike cluster /v1/kvs # CRUD operations on Aerospike records /v1/operate # Complex operations on Aerospike Records /v1/batch # Retrieval of multiple records in a single request /v1/info # Issue info commands to the Aerospike Cluster /v1/index # Secondary index management /v1/users # Manage users and permissions. /v1/roles # Manage roles.

  • Use the GET request to an endpoint to retrieve a record from Aerospike.

  • Use the POST request with a JSON payload to create a record.

Basic Usage section – it demonstrates the basic usage of the REST Client through examples utilizing the Python Requests library.

Performing Multiple Operations on the same record section – it covers more complex examples utilizing the earlier mentioned Operate endpoint.

The examples covered in the Aerospike REST Client Medium post were just a small sample of the operations enabled by the REST Client. There is a much larger set of use cases which can be addressed by this new tool.Use the following link to download the Aerospike Rest Client 1.0.0