The document-oriented-db tag has no wiki summary.
0
votes
0answers
19 views
Suggestion for a way to design a document changes, versioning and merging database
I'm tasked to develop a web application that track document changes, versions and merges. The following are the details involved:
Agency / Organization details
Legislation details
Document details ...
0
votes
2answers
75 views
High Availability In MongoDB
Everybody say that mongoDB is CP in CAP Theorem! But with using master-slave replication, It has high availability too (If a primary fails, the remaining members will automatically try to elect a new ...
1
vote
1answer
40 views
What is the best database to use for content repository? [closed]
I want to build a content repository system for unstructured (or semi structured) data (like images, documents, ...). I want to assign some tags (key words) to each content (like type of content), for ...
4
votes
2answers
160 views
Relational vs Columnar and Document Databases - aren't they one in the same?
I understand that document-oriented NoSQL DBs are "extensions" of the KV model in that they allow you to query more than just a single lookup key. But once something is a "document", I feel like it ...
0
votes
2answers
75 views
Document oriented database on pure php [closed]
I wonder whether there is a database on pure php? With Indexes and MapReduce?
PS I know about MongoDB, CouchDB, SQLite. I am interesting in database written in php.
2
votes
2answers
435 views
Many-to-many relationship with NoSQL database
I want to implement a taxonomy structure (geo terms) for my node.js application with NoSQL database. I had a similar taxonomy structure with MySQL but it's time to move forward and learn something new ...
0
votes
1answer
85 views
What are good approaches for migrating data format in schemaless databases?
If you use schemaless database (particularly document-oriented databases like CouchDB, Couchbase, MongoDB) and want to change format of data representation for a particular object you may leave ...
2
votes
1answer
71 views
Is there a more efficient way of querying HTML data than in an SQlite database?
Maybe my question will be closed because it is not "constructive" enough but anyway... I've already searched for answers but most of them are too general. For my master thesis project I have to crawl ...
0
votes
1answer
195 views
MySQL, Mongo DB and Apache Solr
We want to build a highly scalable website with high traffic and data (Imagine like youtube or facebook). We plan this to develop in PHP and MySQL.
We might need to store millions of data and also ...
2
votes
0answers
398 views
Document database for ARM Debian
Lately I started writing an application for which document database seems like a perfect match for data storage.
I wanted to use MongoDB but as I later discovered there is no proper package for my ...
2
votes
4answers
452 views
Document-Oriented or Graph databases
It's a RoR project.
We want to store user activities, like uploaded a photo, voted for somebody, followed somebody, etc. When listing the activities, we need to list your friends activities as well. ...
0
votes
1answer
101 views
How do I get the variable names in an overloaded object in PHP?
I'm using Overloading with PHP, and what I want to do is;
When I'm calling the object, it would look like this.
$obj->person->name->function();
To do so, I use __get and __call functions. ...
1
vote
1answer
202 views
Document-oriented database or Relational database, how could I choose?
I have been using MySQL and MsSQL quite a bit in the past. Now I am using MongoDB also and I see it very flexible in handling document which fields keep changing - very good for agile development.
As ...
1
vote
1answer
196 views
mongodb micro-optimization of batch inserts ? or is this an important optimization?
premise : update statements are harmless since the driver by default works in one way messaging (as long as getLastError isn't used).
question Is the following fragment the best way to do this in ...
2
votes
1answer
191 views
Is there anything wrong with creating Couch DB views with null values?
I've been doing a fair amount of work with Couch DB in my spare time recently and really enjoy using it. I find it to be much more flexible than using a relational database, but it's not without it's ...
0
votes
1answer
168 views
PyMongo and toArray() method
I need to make some benchmarks on a small database (64MB) and I need to figure out what is the smartest way to fetch whole Mongo collection into python object with PyMongo? In JavaScript, there is ...
5
votes
2answers
399 views
Is it possible to use RDF storage also as a document-oriented database?
Suppose I have a large ammount of heterogeneous JSON documents (i.e. named key-value mappings) and a hierarchy of classes (i.e. named sets) that these documents are attached to. I need to set up a ...
2
votes
0answers
118 views
NoSql update mechanism for CRUD scenarious
I have experience on Orm Frameworks and i start to understand structure of NoSql database solutions.I will go on with some samples based on object models.
I have below document model and i want to ...
0
votes
2answers
221 views
Document-oriented dbms as primary db and a RDBMS db as secondary db?
I'm having some performance issues with MySQL database due to it's normalization.
Most of my applications that uses a database needs to do some heavy nested queries, which in my case takes a lot of ...
1
vote
1answer
180 views
How to re-model the existing data model for a document oriented db like ravendb or mongodb
Assume the following scenario (with relational databases),
class Currency
{
long id;
String code;
String name;
}
class OrderGroup
{
long id;
Collection<Order> Orders;
}
class Order
{
long ...
3
votes
2answers
640 views
MongoDB Update / Upsert Question - Schema Related
I have an problem representing data in MongoDB. I was using this schema design, where a combination of date and word is unique.
{'date':2-1-2011,
'word':word1'
users = [user1, user2, user3, ...
1
vote
0answers
573 views
Optimize search efficiency with mongoDB nested collection?
Let us suppose we have the next data structure:
{
{
"name" : "ElementName1",
"index" : [
{"name" : "key1", "value" : 1},
{"name" : "key2", "value" : 2},
...
1
vote
1answer
481 views
Any document oriented database fit for 512M VPS
I have heard that mongodb use many memory, but I haven't much memory, I need run 2 or 3 apps on a 512M VPS, I want know are there any alternative choice, have easy to use API, and nodejs binding, and ...
1
vote
2answers
99 views
Are DocumentStores (alone) good for searching documents?
I am currently thinking how to best store web-crawling results in a database. In another question document-oriented databases were recommended to use for a web-crawler project: Database for web ...
0
votes
1answer
195 views
How to create pseudo document oriented model?
Currently, I am using Rails with Mysql as the backend. Unfortunately, my application has scaled in data which was not expected or foreseen when it started. Now, I am facing a lot of performance issues ...
4
votes
1answer
222 views
Do any of the major document-oriented database systems compress keys within their JSON documents?
I would like to store a large number of JSON documents using a documented-oriented database, all with very similar schema (though not identical).
One example document:
{
"firstName": "John",
...
0
votes
2answers
453 views
Document-oriented database (MongoDB?) and invoicing/ordering?
New to document-oriented database concepts and have a few high-level questions related to orders and order processing.
How does one capture an order in this world? Would an order just be a new ...
3
votes
1answer
153 views
Hosting an in-process document database on Windows
Are there any document-databases, similar to MongoDB, that run within an ASP.NET web application, and could be hosted on a server without any unique machine configuration?
I'm asking this because the ...
1
vote
1answer
337 views
Any good document-oriented DB for Windows desktop besides MongoDB, etc?
I've been searching for a document-oriented DB that for a Windows desktop program. MongoDB seems to be the best one so far, because it's smaller (11MB) and simpler when compared to CoachDB (which is ...
1
vote
2answers
814 views
GeoCouch / Couchdb / Other as searchable document-oriented db?
I would like to use a document oriented db to store data from a feed. Sometimes that feed contains Geo-spacial data and I would like to be able to search on it. I've found GeoCouch but wonder if it ...
1
vote
1answer
86 views
Document Oriented DB for AIR?
Today I just learned that Adobe Air has a local SQL database, which is great; however, we had been creating xml/json files to handle mostly everything. Rather than re-architect to gain a few new ...
0
votes
1answer
76 views
Benefits of Document Orriented DBs to an existing folder structure
I would like to preface by saying I guess there is no real tangible problem, but I feel odd not having some system managing these things.
We currently have a large amount of XML files located in ...
0
votes
0answers
97 views
document oriented databases [duplicate]
Possible Duplicate:
What's the Attraction of Schemaless Database Systems?
What are the advantages of document oriented databases over relational databases?
Where should i use document ...
17
votes
4answers
4k 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 ...
10
votes
3answers
2k views
Anyone using RavenDB in a production environment?
I'm doing research on the maturity of some document-oriented stores, which includes an overview of applications and websites that use the database in production environments. There are several lists ...
3
votes
3answers
174 views
couchdb good for this case?
I am looking to create a cv bank which when i think about it in terms of storing the data in a relational database the complexity is pretty apparent. Would couchdb make better sense in this case?
...
2
votes
1answer
193 views
Recommended database backend for blog
Greetings,
I'm building my personal website using php. My standard approach is to use MySQL as a database backend. I've been hearing a lot about document orienting databases and I'm wondering if ...
3
votes
2answers
6k views
Mongo DB relations between objects
I'm trying to implement blog post storage using mongo db.
I've got two domain entities:
"Blog post" and "Author"
Currently I've added AuthorId property to blog post entity. Is that the right ...
5
votes
2answers
505 views
Are there any Design Guidelines for Documental Databases?
Just wondering if there are any kind of guidelines for when you are designing a document-oriented db and I am talking especially about CouchDb.
I know that being schemaless things can take the shape ...
18
votes
7answers
2k views
Are document-oriented databases meant to replace relational databases?
Recently I've been working a little with MongoDB and I have to say I really like it. However it is a completely different type of database then I am used. I've noticed that it is most definitely ...
91
votes
6answers
17k views
What are your thoughts on Raven DB? [closed]
What are your thoughts on Raven DB?
How do I go about using Raven DB for data storage in a shared web hosting environment, since Raven DB is interacted with through HTTP?
Are there any areas that ...
5
votes
1answer
302 views
Document-oriented database - What if the document definitions change?
As I understand it, you can enter any non-structured information into a document-oriented database. Let's imagine a document like this:
{
name: 'John Blank',
yearOfBirth: 1960
}
Later, in a new ...
4
votes
2answers
460 views
What open source document-oriented database system is most mature for Windows usage?
After using relational databases as back-end storage all my Windows programming life (currently .NET), I want to experiment with a document-oriented database by this Wikipedia definition; it can be ...
3
votes
3answers
283 views
Does this schema sound better suited for a document-oriented data store or relational?
Disclaimer: let me know if this question is better suited for serverfault.com
I want to store information on music, specifically:
genres
artists
albums
songs
This information will be used in a ...
3
votes
1answer
883 views
Are document-oriented databases any more suitable than relational ones for persisting objects?
In terms of database usage, the last decade was the age of the ORM with hundreds competing to persist our object graphs in plain old-fashioned RMDBS. Now we seem to be witnessing the coming of age of ...
14
votes
6answers
1k views
Relations in Document-oriented database?
I'm interested in document-oriented databases, and I'd like to play with MongoDB. So I started a fairly simple project (an issue tracker), but am having hard times thinking in a non-relational way.
...
2
votes
1answer
161 views
do document-oriented databases have integrity?
I'm coming from a MySQL background, and I'm interested in document-oriented databases, specifically CouchDB. One of the things I'm interested in is data integrity. How do document-oriented databases ...
4
votes
2answers
2k views
Join/sum with CouchDB
Using CouchDB, I currently have a document which represents an idea, you can rate this idea. Every idea is one document and every rating is a different document. I am doing this like this to avoid ...
2
votes
2answers
346 views
What is the benefit of using a “document-oriented DBMS”?
I must be missing something, because everything I've seen so far suggests that it isn't any more interesting than a single table for storing blobs and a second table for tags that apply to it.
Now I ...
5
votes
2answers
1k views
Embedded analog of CouchDB, same as sqlite for SQL Server
I like an idea of document oriented databases like CouchDB. I am looking for simple analog.
My requirements is just:
persistance storage for schema less data;
some simple in-proc quering;
good to ...