About 50 results
Open links in new tab
  1. 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 …

  2. Why NoSQL is better at scaling out than RDBMSs? [closed]

    The two primary differences between NoSQL and SQL, with only the first being a true advantage: ACID vs BASE NoSQL typically leaves out some of the ACID features of SQL, cheating its …

  3. NoSql vs Relational database - Stack Overflow

    NOSQL means only no SQL (or "not only SQL") but that doesn't mean the same as no relational. A relational database in principle would make a very good NOSQL solution - it's just that none …

  4. mongodb - When should I use a NoSQL database instead of a …

    Sep 15, 2010 · 17 NoSQL is a database system where data is organized into the document (MongoDB), key-value pair (MemCache, Redis), and graph structure form (Neo4J). Maybe …

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

    Apr 9, 2010 · NoSQL is a movement promoting a loosely defined class of non-relational data stores that break with a long history of relational databases and ACID guarantees.

  6. Is PostgreSQL a NoSQL database? - Stack Overflow

    Apr 19, 2019 · "NoSQL" is a buzzword describing a diverse collection of database systems that focus on "semi-structured" data (that do not fit well into a tabular representation), sharding, …

  7. database - What exactly is NoSQL? - Stack Overflow

    What is NoSQL ? NoSQL is the acronym for Not Only SQL. The basic qualities of NoSQL databases are schemaless, distributed and horizontally scalable on commodity hardware.

  8. What nosql means? can someone explain it to me in simple words?

    NoSql is the new database philosophy which talks about all the shortcomings of the relational database design, particularly the problems they have in scaling up for today's demanding web …

  9. nosql - Redis availability and CAP theorem - Stack Overflow

    Dec 28, 2019 · In CAP theorem, Redis is specified as a database which lacks availability (which has partition tolerance and consistency). But there are many places where Redis is considered …

  10. How can NoSQL databases achieve much better write throughput …

    May 7, 2018 · How is this possible? What is it about NoSQL that gives it a higher write throughput than some RDBMS? Does it boil down to scalability?