0
jdmkaan
8y

What kind of database do apps like Snapchat, Instagram, etc. use to store pictures and info. I'm guessing it is not MySQL, or Firebase, or Parse, so then what is it.

Comments
  • 0
    It's probably as quick to use file system if you could never the users and dates to strings and store them that way?
  • 1
    chances are it's a nosql database like mongodb, couchdb, or Cassandra.
  • 0
    @sheffters is probably right. No sense putting them in a db
  • 1
    Some use google app engine, others use Amazon web services, snapchat is built using googles cloud
  • 1
    @bobotay well image storage wise you are right, but as for the metadata it would take too long to scrape a thousand pictures along with the added benifit of being able to off load storage space by adding an access url in that metadata
  • 0
    @jckimble yeah my guess is fs for photos with links to them in postgres
  • 0
    Possibly a graph database. It would manage network reqs better than a relational db. Possibly Neo4j
Add Comment