Releases: AcalephStorage/kviator
Releases · AcalephStorage/kviator
v0.0.7
24 May 11:46
Compare
Sorry, something went wrong.
No results found
Added support for storing binary to kv:
$ kviator --kvstore etcd --client localhost:2379 --binary put my-binaryfile - < /tmp/a-binary-file
$ kviator --kvstore etcd --client localhost:2379 --binary get my-binaryfile - > /tmp/retrieved-binary-file
v0.0.5
25 Jun 09:15
Compare
Sorry, something went wrong.
No results found
Added support for list and deltree.
$ kviator ... list
--> lists all kv pairs
$ kviator ... list this/subtree
--> lists all kv pair under this/subtree
$ kviator ... deltree /
--> deletes all kv pairs
$ kviator ... deltree this/subtree
--> removes this/subtree
v0.0.4
24 Jun 15:39
Compare
Sorry, something went wrong.
No results found
IO Redirection now requires - to work. eg. echo this is the value | kviator ... put key1 -.
Also, values no longer discriminate against space. 😄
this works now without quotes:
kviator ... put key1 this is a value with spaces
v0.0.3
24 Jun 07:44
Compare
Sorry, something went wrong.
No results found
Added IO Redirection Support. The following should now work:
$ kviator --kvstore consul --client localhost:8500 put key < value.file
$ echo 'value' | kviator --kvstore consul --client localhost:8500 put key
v0.0.2
22 Jun 06:26
Compare
Sorry, something went wrong.
No results found
Fixed issue with arg parsing getting confused with values containing args
Added command to check for existing key
Fixed build tools
0.0.1
20 Jun 07:35
Compare
Sorry, something went wrong.
No results found
Initial release with basic support for get, put, delete and cas.