Show HN: Deepstream.io – A scalable server for realtime webapps
1–10 of 42 posts
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#2"Due to the way deepstream structures its data (JSON blobs, identified by a primary key) it is recommendable to use an Object oriented or schema-less database (e.g. MongoDB or RethinkDB), rather than a relational database like MySQL."
Is there a way to run complex queries against the data or it designed to abstract that all away from you to be as fast as possible?
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#3Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#4Interesting. How does it differ from https://getstream.io ?
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#5I'm very excited about this! Without reading too much into this, is it safe to say it's like a self-hosted firebase? "Due to the way deepstream structures its data (JSON blobs, identified by a primary key) it is recommendable to use an Object oriented or schema-less database (e.g. MongoDB or RethinkDB), rather than a relational database like MySQL." Is there a way to run complex queries against the data or it designe…
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#6Interesting. How does it differ from https://getstream.io ?
The GetStream server isn't open source, is it?
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#7Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#8- How big can records be? Are they stored as a single object in the persistence layer or using something like materialized paths. The firebase data model is one huge JSON structure, so this looks different.
- How are conflicts handled? Last writer on server wins or last writer anywhere? Do you ensure eventual consistency of all the clients even when you apply optimistic writes on the client?
- Can data be larger than the cache size? How is cache eviction handled?
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#9I'm very excited about this! Without reading too much into this, is it safe to say it's like a self-hosted firebase? "Due to the way deepstream structures its data (JSON blobs, identified by a primary key) it is recommendable to use an Object oriented or schema-less database (e.g. MongoDB or RethinkDB), rather than a relational database like MySQL." Is there a way to run complex queries against the data or it designe…
Re: Show HN: Deepstream.io – A scalable server for realtime webapps
#10I'm very excited about this! Without reading too much into this, is it safe to say it's like a self-hosted firebase? "Due to the way deepstream structures its data (JSON blobs, identified by a primary key) it is recommendable to use an Object oriented or schema-less database (e.g. MongoDB or RethinkDB), rather than a relational database like MySQL." Is there a way to run complex queries against the data or it designe…
Similarly (without reading too much about it) can I use InfluxDb instead of RethinkDb? (Disclaimer: I'm a RethinkDB fanboy, but I'd like to know my options.)