Hello World! in Java with Aerospike. This notebook requires Aerospike
database running locally and that Java kernel has been installed. Visit
Aerospike notebooks
repo for
additional details and the docker container.
Ensure database is running
This notebook requires that Aerospike database is running.
Initialize the client and connect to the cluster. The configuration is
for Aerospike database running on port 3000 of localhost which is the
default. Modify config if your environment is different (Aerospike
database running on a different host or different port).
System.out.println("Initialized the client and connected to the cluster.");
Output
Initialized the client and connected to the cluster.
Understand records are addressable via a tuple of (namespace, set, userkey)
The three components namespace, set, and userkey (with set being
optional) form the Primary Key (PK) or simply key, of the record. The
key serves as a handle to the record, and using it, a record can be read
or written. By default userkey is not stored on the server, only a hash (a
byte array, the fourth component in the output below) which is the
internal representation of the key is stored. For a detailed description
of the data model see the Data Model
overview
Aerospike is schema-less and records may be written without any other
setup. Here the bins or fields: name, age and greeting, are being
written to a record with the key as defined above.
Binbin1=newBin("name", "John Doe");
Binbin2=newBin("age", 32);
Binbin3=newBin("greeting", "Hello World!");
// Write a record
client.put(null, key, bin1, bin2, bin3);
System.out.println("Successfully written the record.");
Output
Successfully written the record.
Read a record
The record can be retrieved using the same key.
// Read the record
Recordrecord=client.get(null, key);
System.out.println("Read back the record.");
Output
Read back the record.
Display result
Print the record that was just retrieved. We are printing:
The metadata with the record’s generation (or version) and expiration time.
Visit Aerospike notebooks
repo to
run additional Aerospike notebooks. To run a different notebook,
download the notebook from the repo to your local machine, and then
click on File->Open, and select Upload.