Skip to content

Instantly share code, notes, and snippets.

@averrin
Created December 27, 2012 07:47
Show Gist options
  • Select an option

  • Save averrin/4386401 to your computer and use it in GitHub Desktop.

Select an option

Save averrin/4386401 to your computer and use it in GitHub Desktop.
(aws) sleepymongoose ❯ curl http://localhost:27080/orlangur/_cmd -d 'cmd={"create":"notes"}'
{"ok": 1.0}%
(aws) sleepymongoose ❯ curl http://localhost:27080/orlangur/notes/_find
{"ok": 1, "results": [], "id": 27}%
(aws) sleepymongoose ❯ curl http://localhost:27080/orlangur/notes/_insert -d 'docs=[{"title":"test", "text":"lorem"}]
'
{"oids": [{"$oid": "50dbf8ec83d3e74c47299d4e"}]}%
(aws) sleepymongoose ❯ curl http://localhost:27080/orlangur/notes/_find
{"ok": 1, "results": [{"text": "lorem", "_id": {"$oid": "50dbf8ec83d3e74c47299d4e"}, "title": "test"}], "id": 28}%
(aws) sleepymongoose ❯
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment