About 2,240,000 results
Open links in new tab
  1. What is NoSQL, how does it work, and what benefits does it provide?

    I've been hearing things about NoSQL and that it may eventually become the replacement for SQL DB storage methods due to the fact that DB interaction is often a bottle neck for speed on …

  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. 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 …

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

    Apr 9, 2010 · So, in a nutshell, I'd say that one of the main benefits of a "NoSQL" data store is its distinct lack of ACID properties. Furthermore, IMHO, the more one tries to implement and …

  5. SQL versus noSQL (speed) - Stack Overflow

    When people are comparing SQL and noSQL, and concluding the upsides and downsides of each one, what I never hear anyone talking about is the speed. Isn't performing SQL queries …

  6. What is the best way to store any kind of file in a database using ...

    May 18, 2022 · You can embed files inside json document in mongoDB with known limit of 16MB. For files above 16MB you can use the gridFS specification. But in general the best practice …

  7. Migrate data from relational DB to NoSQL - Stack Overflow

    Jul 24, 2013 · Migrate data to NoSQL. In my opinion, MongoDB is a good choice. There is a tool, Tapdata Replicator, can replicate MySQL, Oracle, SQLServer to MongoDB. It lets you set the …

  8. Using S3 as a database vs. database (e.g. MongoDB)

    May 13, 2019 · Due to simple setup and low costs I am considering using AWS S3 bucket instead of a NoSQL database to save simple user settings as a JSON (around 30 documents). I …

  9. Is PostgreSQL a NoSQL database? - Stack Overflow

    Apr 19, 2019 · Now you can say that PostgreSQL supports a certain feature commonly found in NoSQL databases. Still, SQL is the only way to interact with a PostgreSQL database, so you …

  10. Storing images in NoSQL stores - Stack Overflow

    Is it a good idea to store blobs in NoSQL stores, and which one is good for it? Also, is NoSQL a good solution for our problem, or would we be better served storing the images in the file …