About 50 results
Open links in new tab
  1. database - What is NoSQL, how does it work, and what benefits …

    Some NoSQL proponents claim that their favorite NoSQL database is the new way of doing things, and SQL is a thing of the past. Are they right? No, of course they aren't. While there …

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

    Yes, de-normalizing the database it's a possible workaround for join-performance issues, obviously at the cost of any data-denormalization (redundancy, updates costs, size, etc). …

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

    May 18, 2022 · So I'm creating a ticket system, and what I'd like to do is to add any type of file to my tickets and store them in my database. So I was thinking about using a noSQL database …

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

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

  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. nosql - Is Cassandra a column oriented or columnar database

    May 11, 2018 · 3 It is a wide column database and is also known as column family databases. The definition from Wikipedia also helps further: Wide-column stores such as Bigtable and …

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

    Sep 15, 2010 · What are the advantages of using NoSQL databases? I've read a lot about them lately, but I'm still unsure why I would want to implement one, and under what circumstances I …

  9. What does being schema-less mean for a NoSQL Database?

    Schema-less is a bit of a misnomer, it's better to think of it as: SQL = Schema enforced by a RDBMS on Write NoSQL = Partial Schema enforced by the DBMS on Write, PLUS schema …

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