cl-mongo icon indicating copy to clipboard operation
cl-mongo copied to clipboard

lisp interface to mongo db

Results 20 cl-mongo issues
Sort by recently updated
recently updated
newest added

I happened to be working through https://github.com/adamtornhill/LispForTheWeb by @adamtornhill, and managed to hack a bit on this to get it working. I've had literally zero looks at the rest of...

I don't feel good about a production server without auth. Is it far from working?

Hello, do you plan to add support for Aggregation Pipelines, please? https://docs.mongodb.com/manual/core/aggregation-pipeline/ If not, can I attempt to do it by myself and submit a PR? It's not a total...

Thanks for this library. could be possible to adapt it to be used with mongodb 3?, now it only works with mongodb 2.6.11, as latest release. ``` ;; connect to...

I am just starting to use this library, so my apologies if this feature already exists. However, at first look it was not there, so here is my suggestion. It...

I added a function and relevant tests to create a MongoDB connection from a URI, as used for example by Heroku.

this is my code ``` (defjs map_category() (emit this.category 1)) (defjs sum_games(c vals) (return ((@ Array sum vals)))) (defun sum-by-category () (cl-mongo:pp (cl-mongo:mr.p ($map-reduce "game" map_category sum_games)))) ``` when I...

I've added 'mongo' as package nickname and a drop collection operation. Feel free to pull if you like it.

I was trying to find a document in a collection using its oid with(imho) the most obvious way: (db.find "collection" (kv "_id" (doc-id somedoc))) But ended up with nothing, so...