--
Group meets on the 1st Thursday and 3rd Tuesday of each month. See http://utahjs.com/location/ for more info.
---
You received this message because you are subscribed to the Google Groups "Utah JavaScript" group.
To unsubscribe from this group and stop receiving emails from it, send an email to utahjs+un...@googlegroups.com.
Visit this group at http://groups.google.com/group/utahjs.
Weeeellll, it's not out of the question. It's just that NoSQL databases still freak me out. Haha. I'm used to a normalized world, and it seems like document stores all lean toward denormalization/chaos. We plan to use Amazon Web Services and take advantage of RDS... which doesn't support NoSQL. If anyone has thoughts on converting from a SQL to a NoSQL mentality, I'm all ears. But thanks for the recommendation, Sean. I'll definitely take the time to look into it.
You received this message because you are subscribed to a topic in the Google Groups "Utah JavaScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/utahjs/R_-7l4BcvLQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to utahjs+un...@googlegroups.com.
Weeeellll, it's not out of the question. It's just that NoSQL databases still freak me out. Haha. I'm used to a normalized world, and it seems like document stores all lean toward denormalization/chaos. We plan to use Amazon Web Services and take advantage of RDS... which doesn't support NoSQL. If anyone has thoughts on converting from a SQL to a NoSQL mentality, I'm all ears. But thanks for the recommendation, Sean. I'll definitely take the time to look into it.
On Tue, Oct 8, 2013 at 12:16 PM, Sean Clark Hess <sean...@gmail.com> wrote:
You received this message because you are subscribed to a topic in the Google Groups "Utah JavaScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/utahjs/R_-7l4BcvLQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to utahjs+un...@googlegroups.com.
Sean – I’ve casually looked at RethinkDB as a replacement for MongoDB, but I rely heavily on the $elemMatch query in mongo and at a quick look could not find something similar in Rethink. Do you know a way to do similar in Rethink?
Otherwise it has does look impressive.
Also +1 for DigitalOcean
Dan
You received this message because you are subscribed to a topic in the Google Groups "Utah JavaScript" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/utahjs/R_-7l4BcvLQ/unsubscribe.
To unsubscribe from this group and all its topics, send an email to utahjs+un...@googlegroups.com.
Example: Select all documents where the field 'powers' containing an array has an element equal to 10.
r.table('marvel').filter(
r.row('poweres').filter(
function(powers_el) { return powers_el.eq(10) }
).count().gt(0)
).run(conn, callback)Very cool. I’ll definitely be keeping an eye on RethinkDB.
CouchDB seems cool too. Master master replication, http requests to store and read data. But I haven't ever used it.We do use postgres here at my work and it does great. Handles millions of call records too. We have been happy.
>>> On Wed, Oct 9, 2013 at 10:20 AM, Sean Clark Hess <seanhess@gmail.c




Sequelize (http://sequelizejs.com/documentation) and node-orm2 (https://github.com/dresende/node-orm2) are the most popular that I am aware of. I don't have experience with either of them though.
--
--
Woah, sweet! That's good news. Thanks for the heads up, David!
--