Skip to content
Snippets Groups Projects
Commit aa10ff66 authored by mcmlxxix's avatar mcmlxxix
Browse files

add remove() method (delete db records)

parent 8afb8f8c
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,16 @@ function JSONClient(serverAddr,serverPort) {
});
}
/* store object data (lock for writing) */
this.remove=function(scope,location,lock) {
this.send(scope,"QUERY",{
oper:"WRITE",
location:location,
data:undefined,
lock:lock
});
}
/* unshift object data (lock for writing) */
this.unshift=function(scope,location,data,lock) {
this.send(scope,"QUERY",{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment