Steve Lacy
Steve Lacy
Yes. There are two options: 1. Have embedded Model's turned into their own collections and stored internally as DBRef's 2. Actually just embed them when embedded. I'm thinking that #1...
For case #2, one option would be to have minimongo annotate saved objects with the db and collection (or even just the minimongo module & class name). I think this...
I'm not sure why you would use the structure outlined above rather than: ``` { _id : ObjectId("...") name : "foo" a: { _id: ObjectId("...")}, # This is a DBRef...
Hi, sorry for the delay, was quite busy with my other project. In development, I'm calling configure() in my **init**.py that runs the paster script. In production, I actually bubble...
How would this be different than mongodump? Are you thinking of some kind of pickled object?
I like this idea, the only question I had from an app developer's perspective is something like: "I only want to declare my host & port connection parameters once. Where...
What I was thinking here is: When an object is read from the DB, we would like to go through all the fields (likely via an overridden **setitem** method on...
I would like to allow 2 document types in the same collection, as I suspect that's what some people are doing today (without minimongo) and I want to make sure...
Yeah, restricting that case by default would be fine with me, although there should be something you can put in Meta to allow multiple documents in the same collection. Something...
Hey, I just implemented and pushed something that could be used for exactly this case. It's a way to map fields from one type to another type, pretty much arbitrarily....