Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/edadma/bittydb-repl
a command-line environment for interacting with BittyDB
https://github.com/edadma/bittydb-repl
Last synced: 14 days ago
JSON representation
a command-line environment for interacting with BittyDB
- Host: GitHub
- URL: https://github.com/edadma/bittydb-repl
- Owner: edadma
- License: mit
- Created: 2015-07-15T21:33:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-17T14:19:15.000Z (over 7 years ago)
- Last Synced: 2024-11-19T10:12:58.905Z (3 months ago)
- Language: Scala
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
BittyDB REPL
============Do a `git clone`, run `sbt` and type `run` at prompt to start REPL...
Welcome to the BittyDB shell
> db.test.insert( {a: 1, b: "asdf"}, {a: 2, b: "zxcv"} )
> db.test.find( {} )
res2 = [{"a": 1, "b": "asdf", "_id": 88e099af-ed65-48db-bf8c-ec1b2b836da3}, {"a": 2, "b": "zxcv", "_id": 9d64d664-1f99-4a70-afdd-ac59f1d29a9f}]> db.test.find( {a: {$lt: 2}} )
res3 = [{"a": 1, "b": "asdf", "_id": 88e099af-ed65-48db-bf8c-ec1b2b836da3}]