http://gothub.r4focoma7gu2zdwwcjjad47ysxt634lg73sxmdbkdozanwqslho5ohyd.onion/skytable/skytable
With the REPL started, follow this guide : Create a space and switch to it: CREATE SPACE myspace
USE myspace Create a model : CREATE MODEL myspace . mymodel (username: string, password: string, notes: list { type: string }) The rough representation for this in Rust would be: pub struct MyModel { username : String , password : String , notes : Vec < String > , } INSERT some data: INSERT INTO mymodel( ' sayan ' , ' pass123 ' , []) UPDATE some data: UPDATE mymodel SET notes +...