Re: [racket-users] Anyone using MongoDB 3.2.15 with DrRacket 6.9?

2017-08-12 Thread Jay McCarthy
On Sun, Aug 6, 2017 at 3:49 PM, Cecil McGregor wrote: > The output is as expected as well as the db validity: > (This was performed after running db.dropDatabase() ) > Welcome to DrRacket, version 6.9 [3m]. > Language: racket, with debugging. > '#("Can't wait!" "Another blog?") >> (mongo-db? d) >

Re: [racket-users] Anyone using MongoDB 3.2.15 with DrRacket 6.9?

2017-08-07 Thread Cecil McGregor
On Monday, August 7, 2017 at 9:01:39 AM UTC-7, Ryan Culpepper wrote: > On 08/06/2017 05:49 PM, Cecil McGregor wrote: > > [...] > > What are other people using for a NoSQL racket experience? > > Are you looking for no schema or no ACID? If the latter, the git version > of the db library now has ex

Re: [racket-users] Anyone using MongoDB 3.2.15 with DrRacket 6.9?

2017-08-07 Thread Ryan Culpepper
On 08/06/2017 05:49 PM, Cecil McGregor wrote: [...] What are other people using for a NoSQL racket experience? Are you looking for no schema or no ACID? If the latter, the git version of the db library now has experimental support for Apache Cassandra. Ryan -- You received this message beca

[racket-users] Anyone using MongoDB 3.2.15 with DrRacket 6.9?

2017-08-06 Thread Cecil McGregor
I've run the Quickstart and find some problems when I start adding minor forms. The QuickStart is at https://docs.racket-lang.org/mongodb/Quickstart.html Here is the QuickStart code: #lang racket (require db/mongodb) (define m (create-mongo)) (define d (make-mongo-db m "awesome-dot-com")) (curr