Tagged Questions
10
votes
4answers
1k views
What's the attraction of schemaless database systems?
I've been hearing a lot of talk about schema-less (often distributed) database systems like MongoDB, CouchDB, SimpleDB, etc...
While I can understand they might be valuable for some purposes, in most ...
8
votes
4answers
3k views
What is the best open source solution for storing time series data?
I am interested in monitoring some objects. I expect to get about 10000 data points every 15 minutes. (Maybe not at first, but this is the 'general ballpark'). I would also like to be able to get ...
4
votes
1answer
487 views
how to export collection to csv in mongodb
How to export all the record in mongodb to csv ?
mongoexport --host localhost --db dbname --collection name --csv > test.csv
This asks me to specify name of the fields I need to export. Can I ...
3
votes
5answers
1k views
What is couchdb, for what and how should I use it?
I hear a lot about couchdb, but after reading some documents about it, I still don't get why to use it and how.
Could you clarify this mystery for me?
1
vote
4answers
217 views
Using a Filesystem (Not a Database!) for Schemaless Data - Best Practices
After reading over my other question, Using a Relational Database for Schema-Less Data, I began to wonder if a filesystem is more appropriate than a relational database for storing and querying ...
0
votes
1answer
75 views
What is the relative cost of reading rows vs. columns in SQLite?
I am attempting to create a wrapper around SQLite databases that would allow schema-less access from .net applications. The idea is to have each entity as simply a collection or attribute value ...