In memory JSON Database with REST API
Currently it support GET(retrive) / POST(create/update) / DELETE(delete) http method. You can try it like
curl -X POST -d @<JSON-FINE> http://<HOSTNAME>/<ENTRY-NAME> #create
curl -X DELETE http://<HOSTNAME>/<ENTRY-NAME> #delete
curl http://<HOSTNAME>/<ENTRY-NAME> #retriveTo start the server, you should run
(serve <port-number>)or you can get the result of serve procedure, and use it to stop the server:
;start
(define stop (serve <port-number>))
;stop
(stop)- transactions
- MVCC?
- More REST method support
- Run as daemon