MongoDB Haskell driver, including patch for MongoDB v.6.* authentication with SCRAM-SHA256
Find a file
Victor Denisov 5e72c8ad61 Handle the case when mongodb returns less documents than cursor requested
If we request certain amount of values from a cursor the mongo db server can
return less than requested. So, if we provide -100000 then mongodb may
return 97899 and close the cursor.

Instead of relying on negative values this implementation will use only
positive numbers and will close the cursor itself as soon as the driver
receives enough results.

It fixes the issue #24 from github.
2015-06-19 18:23:44 -07:00
Database Handle the case when mongodb returns less documents than cursor requested 2015-06-19 18:23:44 -07:00
doc Update tutorial.md 2015-01-10 18:33:00 +08:00
System/IO FlexibleContexts required for GHC 7.10 2015-03-21 13:53:16 +02:00
test Add aggregate test 2015-03-22 19:55:01 +02:00
.gitignore ignore cabal sandbox 2014-06-22 17:58:52 -07:00
.travis.yml Install the dependencies for all packages 2015-03-22 19:02:20 +02:00
LICENSE Add license file 2010-06-28 20:24:23 -04:00
mongoDB.cabal version bump for export of MongoContext constructor 2015-05-16 09:43:05 -07:00
README.md Update links to repository in README and .cabal 2014-07-07 08:51:06 +04:00
Setup.lhs stuff to make into a package 2010-01-09 16:49:06 -06:00

This is the Haskell MongoDB driver (client). MongoDB is a free, scalable, fast, document database management system. This driver lets you connect to a MongoDB server, and update and query its data. It also lets you do adminstrative tasks, like create an index or look at performance statistics.

Documentation