Tagged Questions

2
votes
1answer
312 views

Saving numpy array in mongodb

I have a couple of MongoDB documents wherein one my the fields is best represented as a matrix (numpy array). I would like to save this document to MongoDB, how do I do this? { 'name' : 'subject1', ...
2
votes
1answer
48 views

I am looking for a key-value datastore which has following (preferable) properties

I am trying to build a distributed task queue, and I am wondering if there is any data store, which has some or all of the following properties. I am looking to have a completely decentralized, ...
2
votes
1answer
374 views

Multiple inequality conditions (range queries) in NoSQL

I have an application where I'd like to use a NoSQL database, but I still want to do range queries over two different properties, for example select all entries between times T1 and T2 where the ...
2
votes
7answers
728 views

Are there any stable and production quality nosql datastores?

Are there are production quality nosql stores that I can use on a production system. I have looked at cassandra, tokyodb, couchdb etc but none of them seem to be ready for deployments on production ...
1
vote
2answers
149 views

Non Relational Database , Key Value or flat table

My application needs configurable columns , and titles of these columns get configured in the begining, If relation database I would have created generic columns in table like CodeA, CodeB etc for ...
1
vote
2answers
246 views

Basic examples of InfoGrid applications

I am trying to use this software called InfoGrid for a project that I am building. Can someone please point me to some basic getting started articles. I don't see any documentation on the site. ...
0
votes
1answer
95 views

Saving numpy array in mongodb - follow up question

I want to save a numpy 1D array in mongodb. Basically I found a way to do it here: Saving numpy array in mongodb The proposed solution was to use the .toList() function to transfer the array into a ...
0
votes
1answer
77 views

Changing entity-classes problem with development for app-engine

My problem is pretty much obvious: I had a class named TaskDescription which corresponded to a kind (table) in App Engine Datastore. Then I've renamed it to TaskContent and all stored data is ...