Nolan,
If you using json type objects for storage and retrieval of data, I’d highly recommend elasticsearch over a database.
I store similar data, and I’ve found elasticsearch to be excellent; you just throw it a json object, and it stores it and returns it in pageable format, and it’s highly searchable/filterable too and it’s incredibly fast.
Not sure if it will fit your requirements, but I thought I’d throw that in there for you.
Tom.
--
--
You received this message because you are subscribed to the Google Groups "ColdBox Platform" group.
For News, visit http://blog.coldbox.org
For Documentation, visit http://wiki.coldbox.org
For Bug Reports, visit https://ortussolutions.atlassian.net/browse/COLDBOX
---
You received this message because you are subscribed to the Google Groups "ColdBox Platform" group.
To unsubscribe from this group and stop receiving emails from it, send an email to coldbox+u...@googlegroups.com.
To post to this group, send email to col...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
I have a dedi yes –Elasticsearch is running on an EC2 large instance (7GB), but I’ve also got other things running on that server; tomcat (alfresco), MySQL and it’s a NFS server too. ElasticSearch is tuned to use 1GB of RAM, which I’ve found ample. Storage wise I have 1TB, but elasticsearch only uses about 500Mb at the moment.
I’d guess it would run fine on a EC2 Small instance…
Rest. I have a cfc I use to interface with it. Happy to share it, although it’s really just a simple function which accepts a few parameters. I’d show you an example if you’re interested?
https://gist.github.com/tgmweb/6031116
There’s a simple example
From: col...@googlegroups.com [mailto:col...@googlegroups.com] On Behalf Of Nolan Dubeau
Sent: 18 July 2013 18:03
To: col...@googlegroups.com
That was ElasticCache – AWS version of MemcacheD.
ElasticSearch is different, it’s basically a fork of Lucene I think….