In Lianja 9.8 you can now use Lianja/KVS in the Cloud.
This can be used in your apps on the server or with the node.js and python modules.
This is a very high performance key-value store that let's you stream in data. It can be shared across multiple dockerized server instances to horizontally scale.
You can have background tasks running that open the key-value store up and treat it as a queue of work requests.
The uses of this are very exciting.
Here are a few screen shots to show you what ODATA URIs to use.
Working with queues and stacks.
Saving as an object in your server-side code.
Using the Cloud Server ODATA and KVS from node.js and Python.
https://www.lianja.com/doc/index.php...Node.js_Module
https://www.lianja.com/doc/index.php...#Python_Module
Notes
e.g use odata_read("/southwind/example.kvs?key=xxx"), odata_create(), odata_update() and odata_delete().
for queues: odata_read("/southwind/example.kvs?$op=removefirst")
for stacks: odata_read("/southwind/example.kvs?$op=removelast")
use $size to include the count of key-value items in the KVS file.
odata_read("/southwind/example.kvs?$size&$limit=0,10") or odata_read("/southwind/example.kvs?$size&$top=10")
Bookmarks