0
votes
0answers
74 views
NoSql - which is best for my needs - i am having mental breakdown
I am building a Reddit clone in Erlang. I am considering using some erlang web frameworks but this is not the problem.
I am having a problem selecting a database.
How it works;
I have multiple …
0
votes
1answer
24 views
CouchDB View, Map, Index, and Sequence
I think read somewhere that when a View is requested the "map" is only run across documents that have been added since the last time it was requested? How is this determined? I thought I saw something …
0
votes
1answer
15 views
What is the “revpos” value used for in CouchDB attachments?
Here is an example:
"_attachments": {
"002-imgsq.jpg": {
"stub": true,
"content_type": "image/jpeg",
"length": 80074,
"revpos": 3
},
…
2
votes
2answers
66 views
representing a many-to-many relationship in couchDB
Let's say I'm writing a log analysis application. The main domain object would be a LogEntry. In addition. users of the application define a LogTopic which describes what log entries they are …
1
vote
3answers
76 views
I need an advice about NoSQL/MongoDb and data/models structure
Hi everyone,
Recently I'm exploring NoSQL Databases. I need an advice about how to store data in the most optimal and efficient way for a given problem. I'm targeting MongoDB, now. However it should …
0
votes
1answer
81 views
Middleware for MongoDB or CouchDB with jQuery Ajax/JSON frontend
I've been using the following web development stack for a few years:
java/spring/hibernate/mysql/jetty/wicket/jquery
For certain requirements, I'm considering switching to a NoSQL datastore with an …
1
vote
1answer
50 views
How are CouchDB Document ID’s Calculated?
How are the CouchDB Document ID's calculated?
BA1F48C5418E4E68E5183D5BD1F06476
Thanks!
3
votes
6answers
129 views
Small “embeddable” database that can also be synced over the network?
I am looking for a small database that can be "embedded" into my Python application without running a separate server, as one can do with SQLite or Metakit. I don't need an SQL database, in fact …
0
votes
3answers
84 views
couchDB , python and authentication
I have installed couchDB v 0.10.0, and am attempting to talk to it via python from Couch class downloaded from couchDB wiki. Problem is:
Create database 'mydb': {'error': 'unauthorized', 'reason': …
0
votes
1answer
17 views
Temp View Caching?
I'm using CouchDB with a home-grown C# interface library. The most common method of accessing CouchDB with this library results in a temp view being created. I've optimized the library so that it uses …
1
vote
3answers
52 views
Comparing ruby hashes
Hi
I have two ruby hashes (which are essentially models) and am trying to find the differences between them, one is an old instance of an object where the other has new values assigned to some …
2
votes
6answers
244 views
couchdb vs mysql speed
What can you tell about speed of couchdb and mysql databases?
I mean, very simple requests like getting one row (or one document) by unique id and simple requests like getting the 20 …
2
votes
3answers
242 views
CouchDB a real world example
Hello stackoverflow gurus,
Tonight in my daily tech googling I came across couchDB, after seeing tons of presentations about how it perform ten to hundred times better then any RDBM, how it would …
0
votes
1answer
128 views
Nested databases in CouchDB
It seems you are unable to nest databases in CouchDB. How do people work around this limitation? For example, assume I want to create a blogging engine where each domain has a separate database. …
1
vote
2answers
76 views
What is the idiomatic way to implement foreign keys in CouchDB?
Let me state a simple example: You have an Order and a Shopping Cart. One way I envision persisting this is to save an Order document and a Cart document. The Order document could have a field called …
