About 3,410,000 results
Open links in new tab
  1. Why NoSQL is better at scaling out than RDBMSs? [closed]

    Actually, I can't find a very strong reason that why NoSql databases can be scaled easily. What I can say is NoSql is the latest so databases come with ready-made support for horizontal scaling for …

  2. What is NoSQL, how does it work, and what benefits does it provide?

    NoSQL databases aren't a replacement for SQL - they are an alternative. Most software ecosystems around the different NoSQL databases aren't as mature yet. While there are advances, you still …

  3. Is there any NoSQL data store that is ACID compliant?

    Apr 9, 2010 · NoSQL databases, being predominantly (at the moment) focused on high data volumes and high traffic, seem to be tackling the idea of distributed updates which take place within (from a …

  4. How do you track record relations in NoSQL? - Stack Overflow

    In a denormalized database or in NoSQL, it becomes your responsibility to write application code to prevent anomalies. One might think that it'd be great for a NoSQL database to do the hard work of …

  5. SQL versus noSQL (speed) - Stack Overflow

    Another popular type of noSQL system is the document database (like CouchDB). These databases have no predefined data structure. Their speed advantage relies heavily on denormalization and …

  6. How does wide-column NoSQL differ from document-oriented?

    The three types of NoSQL databases I've read about is key-value, wide-column, and document-oriented. Key-value is pretty straight forward - a key with a plain value. I've seen document-oriented dat...

  7. Which NoSQL database should I use for logging? [closed]

    May 10, 2012 · Do you have any experience logging to NoSQL databases for scalable apps? I have done some research on NoSQL databases for logging and found that MongoDB seems to be a good …

  8. Difference between scaling horizontally and vertically for databases ...

    Jul 29, 2012 · I have come across many NoSQL databases and SQL databases. There are varying parameters to measure the strength and weaknesses of these databases and scalability is one of …

  9. NoSql vs Relational database - Stack Overflow

    NoSQL databases are designed to handle unstructured data (e.g., texts, social media posts, video, email) which makes up much of the data that exists today. Scaling: It’s much cheaper to scale a …

  10. Differences between NoSQL databases - Stack Overflow

    Oct 22, 2013 · Document databases pair each key with a complex data structure known as a document. Documents can contain many different key-value pairs, or key-array pairs, or even nested …