Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Does anyone here have an idea of how popular mongoDB is?

Does anyone here have an idea of how popular mongoDB is?

Scheduled Pinned Locked Moved The Lounge
jsonmongodbquestion
18 Posts 12 Posters 19 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H honey the codewitch

    I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

    Real programmers use butterflies

    G Offline
    G Offline
    Garth J Lancaster
    wrote on last edited by
    #3

    well, Im just beginning to play with it for an upcoming series on Go(lang), mainly because I wish to use JSON 'documents', and I think for non SQL work it is quite popular - on looking at the examples Im putting together, it is certainly 'easier' to change the structure of a document, rather than redefine a SQL relation table As with sooo many things, one chooses the right tool for the job - some tools can be used as a hammer to achieve a task, that doesn't necessarily mean that it is correct to do so A recent company I worked for were inclined to store large XML blobs in relational tables with other information - their life would have been much easier not to have done so, but evolution is rarely logical

    1 Reply Last reply
    0
    • H honey the codewitch

      I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

      Real programmers use butterflies

      Sander RosselS Offline
      Sander RosselS Offline
      Sander Rossel
      wrote on last edited by
      #4

      It's one of the most popular databases and the most popular NoSQL database. Source: DB-Engines Ranking - popularity ranking of database management systems[^] No idea why Oracle is at #1 though, must be some kind of Stockholm syndrome thing :~ Anyway, I've used MongoDB in the past and it's very easy to just write some code and store it in the database. Except that when you add a property you always need to think about whether that property is backwards compatible. You have to do that with SQL too, of course, but there you are more forced to think about it. It's VERY easy to just add a new property of type int, but when a MongoDB document doesn't have that property you're going to have a runtime mapping exception so you'll have to make it int? instead, etc. Also, forget normalization. If you have a highly normalized data structure, MongoDB is going to make life harder. So really think about what data you can store with redundancy and what data you can't. Also, I found querying a MongoDB a lot harder, but that's probably only because I'm not used to the syntax :o I'm not used to seeing you use popular technology by the way, unless you're going to use this for your LALR X-PARSE B-TREE REGEX EXPRESSION COMPILER +5 :laugh:

      Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

      K raddevusR F 3 Replies Last reply
      0
      • H honey the codewitch

        I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

        Real programmers use butterflies

        S Offline
        S Offline
        Stuart Dootson
        wrote on last edited by
        #5

        [CouchDB](https://couchdb.apache.org/) is another alternative, but MongoDB is the one I hear mentioned most often. Having said that, a lot of those mentions are on infosec news, when someone's left their MongoDB store up, unprotected, on Amazon S3 and the data in it has been compromised... That's not MongoDB's fault, of course

        Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

        Sander RosselS 1 Reply Last reply
        0
        • H honey the codewitch

          I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

          Real programmers use butterflies

          R Offline
          R Offline
          RickZeeland
          wrote on last edited by
          #6

          It seems to be very popular on Slant: mongodb-review[^]

          1 Reply Last reply
          0
          • H honey the codewitch

            I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

            Real programmers use butterflies

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #7

            Quote:

            MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.

            However, they also say:

            Quote:

            No database makes you more productive.

            So I guess simple text files are the future. ;P

            1 Reply Last reply
            0
            • Sander RosselS Sander Rossel

              It's one of the most popular databases and the most popular NoSQL database. Source: DB-Engines Ranking - popularity ranking of database management systems[^] No idea why Oracle is at #1 though, must be some kind of Stockholm syndrome thing :~ Anyway, I've used MongoDB in the past and it's very easy to just write some code and store it in the database. Except that when you add a property you always need to think about whether that property is backwards compatible. You have to do that with SQL too, of course, but there you are more forced to think about it. It's VERY easy to just add a new property of type int, but when a MongoDB document doesn't have that property you're going to have a runtime mapping exception so you'll have to make it int? instead, etc. Also, forget normalization. If you have a highly normalized data structure, MongoDB is going to make life harder. So really think about what data you can store with redundancy and what data you can't. Also, I found querying a MongoDB a lot harder, but that's probably only because I'm not used to the syntax :o I'm not used to seeing you use popular technology by the way, unless you're going to use this for your LALR X-PARSE B-TREE REGEX EXPRESSION COMPILER +5 :laugh:

              Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

              K Offline
              K Offline
              KarstenK
              wrote on last edited by
              #8

              so in the "middle" of the "middle field". Nice position :cool:

              Press F1 for help or google it. Greetings from Germany

              1 Reply Last reply
              0
              • H honey the codewitch

                I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

                Real programmers use butterflies

                F Offline
                F Offline
                F ES Sitecore
                wrote on last edited by
                #9

                MongoDB - where GUIDs are displayed in the wrong order just to punish you. 2/5 would not use again.

                H 1 Reply Last reply
                0
                • S Stuart Dootson

                  [CouchDB](https://couchdb.apache.org/) is another alternative, but MongoDB is the one I hear mentioned most often. Having said that, a lot of those mentions are on infosec news, when someone's left their MongoDB store up, unprotected, on Amazon S3 and the data in it has been compromised... That's not MongoDB's fault, of course

                  Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                  Sander RosselS Offline
                  Sander RosselS Offline
                  Sander Rossel
                  wrote on last edited by
                  #10

                  Stuart Dootson wrote:

                  That's not MongoDB's fault, of course

                  Well, in part. Their default setting is (was?) unprotected and open for all to see :~ That's a very dubious default and one that many people failed to change!

                  Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                  S 1 Reply Last reply
                  0
                  • Sander RosselS Sander Rossel

                    Stuart Dootson wrote:

                    That's not MongoDB's fault, of course

                    Well, in part. Their default setting is (was?) unprotected and open for all to see :~ That's a very dubious default and one that many people failed to change!

                    Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                    S Offline
                    S Offline
                    Stuart Dootson
                    wrote on last edited by
                    #11

                    Sander Rossel wrote:

                    Their default setting is (was?) unprotected and open for all to see :~

                    The reports I've heard were implying more that the S3 permissions had been defaulted, so anyone could access (and download) the datastore rather than accessing the associated MongoDB server.

                    Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                    Sander RosselS 1 Reply Last reply
                    0
                    • S Stuart Dootson

                      Sander Rossel wrote:

                      Their default setting is (was?) unprotected and open for all to see :~

                      The reports I've heard were implying more that the S3 permissions had been defaulted, so anyone could access (and download) the datastore rather than accessing the associated MongoDB server.

                      Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                      Sander RosselS Offline
                      Sander RosselS Offline
                      Sander Rossel
                      wrote on last edited by
                      #12

                      I may be thinking of another incident where researchers just tried the default MongoDB port on thousands of servers and found that for many of those servers the port was open and the database was exposed.

                      Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                      S 1 Reply Last reply
                      0
                      • Sander RosselS Sander Rossel

                        It's one of the most popular databases and the most popular NoSQL database. Source: DB-Engines Ranking - popularity ranking of database management systems[^] No idea why Oracle is at #1 though, must be some kind of Stockholm syndrome thing :~ Anyway, I've used MongoDB in the past and it's very easy to just write some code and store it in the database. Except that when you add a property you always need to think about whether that property is backwards compatible. You have to do that with SQL too, of course, but there you are more forced to think about it. It's VERY easy to just add a new property of type int, but when a MongoDB document doesn't have that property you're going to have a runtime mapping exception so you'll have to make it int? instead, etc. Also, forget normalization. If you have a highly normalized data structure, MongoDB is going to make life harder. So really think about what data you can store with redundancy and what data you can't. Also, I found querying a MongoDB a lot harder, but that's probably only because I'm not used to the syntax :o I'm not used to seeing you use popular technology by the way, unless you're going to use this for your LALR X-PARSE B-TREE REGEX EXPRESSION COMPILER +5 :laugh:

                        Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                        raddevusR Offline
                        raddevusR Offline
                        raddevus
                        wrote on last edited by
                        #13

                        This is a nice write-up and has some valuable points. I would also add that yes, MongoDB is quite popular based on the fact that it had an IPO and you can buy stock in the company: MongoDB current stock price[^] That may sound a bit ridiculous but I mean it does show a bit of consumer and investor confidence and that the company itself seems to be solid.

                        1 Reply Last reply
                        0
                        • F F ES Sitecore

                          MongoDB - where GUIDs are displayed in the wrong order just to punish you. 2/5 would not use again.

                          H Offline
                          H Offline
                          honey the codewitch
                          wrote on last edited by
                          #14

                          I wasn't asking for a review

                          Real programmers use butterflies

                          1 Reply Last reply
                          0
                          • Sander RosselS Sander Rossel

                            I may be thinking of another incident where researchers just tried the default MongoDB port on thousands of servers and found that for many of those servers the port was open and the database was exposed.

                            Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                            S Offline
                            S Offline
                            Stuart Dootson
                            wrote on last edited by
                            #15

                            No, you're quite right - [that's another attack vector](https://www.mongodb.com/blog/post/how-to-avoid-a-malicious-attack-that-ransoms-your-data)...

                            Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

                            1 Reply Last reply
                            0
                            • H honey the codewitch

                              I've been out of the professional dev field for some time but I've run across mongoDB backed REST based repositories like TMDB's. They're really easy to tightly integrate with a JSON based caching entity framework. What I'm really asking is if mongoDB is the "go to" for REST based JSON repositories or is there a more popular offering out there these days?

                              Real programmers use butterflies

                              M Offline
                              M Offline
                              MadMyche
                              wrote on last edited by
                              #16

                              Apparently it is the wave of the future

                              Member 12321939

                              in my project i am using MongoDB in there sample they use MySQL which is deprecated

                              [Quick Answers =>How to get fingerprint with u.are.u 4500 using PHP](https://www.codeproject.com/Questions/5267246/How-to-get-fingerprint-with-u-are-u-4500-using-PHP)

                              Director of Transmogrification Services Shinobi of Query Language Master of Yoda Conditional

                              1 Reply Last reply
                              0
                              • Sander RosselS Sander Rossel

                                It's one of the most popular databases and the most popular NoSQL database. Source: DB-Engines Ranking - popularity ranking of database management systems[^] No idea why Oracle is at #1 though, must be some kind of Stockholm syndrome thing :~ Anyway, I've used MongoDB in the past and it's very easy to just write some code and store it in the database. Except that when you add a property you always need to think about whether that property is backwards compatible. You have to do that with SQL too, of course, but there you are more forced to think about it. It's VERY easy to just add a new property of type int, but when a MongoDB document doesn't have that property you're going to have a runtime mapping exception so you'll have to make it int? instead, etc. Also, forget normalization. If you have a highly normalized data structure, MongoDB is going to make life harder. So really think about what data you can store with redundancy and what data you can't. Also, I found querying a MongoDB a lot harder, but that's probably only because I'm not used to the syntax :o I'm not used to seeing you use popular technology by the way, unless you're going to use this for your LALR X-PARSE B-TREE REGEX EXPRESSION COMPILER +5 :laugh:

                                Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                F Offline
                                F Offline
                                Fabio Franco
                                wrote on last edited by
                                #17

                                Sander Rossel wrote:

                                you're going to have a runtime mapping exception

                                Only if you're using a strongly typed language. Javascript (or even TypeScript) with NodeJS does not have that problem, although I do agree you still need to think about it.

                                To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                                Sander RosselS 1 Reply Last reply
                                0
                                • F Fabio Franco

                                  Sander Rossel wrote:

                                  you're going to have a runtime mapping exception

                                  Only if you're using a strongly typed language. Javascript (or even TypeScript) with NodeJS does not have that problem, although I do agree you still need to think about it.

                                  To alcohol! The cause of, and solution to, all of life's problems - Homer Simpson ---- Our heads are round so our thoughts can change direction - Francis Picabia

                                  Sander RosselS Offline
                                  Sander RosselS Offline
                                  Sander Rossel
                                  wrote on last edited by
                                  #18

                                  Yeah, it's not a problem if you use NodeJS, but I'm assuming honey is using C# :) Of course you still can't just add number2 after some weeks of production (and always set it for new records) and then somewhere do number1 + number2, assuming they both have a value. Even if number1 always has a value, number2 only gets a value at some point in time, unless you do a collection update like you'd do in a SQL database. When I worked with MongoDB we used to do that because updating the entire collection is easier than updating the entire software :laugh: For the record, I didn't think we needed MongoDB, SQL would've been fine, especially when you want schema integrity anyway, but it was the decision of our architect. At least it gave me a chance to work with MongoDB in a production environment.

                                  Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups