Release of C++ SDK v1.3.0
We are excited to announce the release of ReductStore Client SDK for C++ v1.3.0! This release includes support for the ReductStore API v1.3.0 with labels and content type.
We are excited to announce the release of ReductStore Client SDK for C++ v1.3.0! This release includes support for the ReductStore API v1.3.0 with labels and content type.
Hey everyone,
I'm happy to announce that we have released Reduct CLI client v0.7.0 with some minor improvements and bug fixes. We started using the tool in real applications and faced some problems exporting data from a ReductStore instance when the connection is slow and we have many entries to download asynchronously.
First of all, it wasn't very convenient to count all needed entries in the rcli export
command. Now we can use
wildcards:
rcli export folder instance/bucket ./export_path --entries=sensor-*
Hey everyone,
we are pleased to announce the release of version 1.3.0 of the ReductStore SDK for JavaScript. This version supports the new features of ReductStore v1.3, including labels and content type.
Now you can write a record with MIME type and labels to ReductStore:
const client = new Client("https://play.reduct.store");
const bucket = await client.getOrCreateBucket("bucket");
const record = await bucket.beginWrite("entry-1", {
contentType: "text/plain",
labels: { type: "example" },
});
await record.write("Some text");