SQLite all over the place – it's great having a super portable DB format for quick little hits. There's nothing quite like sending a DB as an email attachment.
Poll: What database does your company use?
301–310 of 378 posts
Re: Poll: What database does your company use?
#302Re: Poll: What database does your company use?
#303Re: Poll: What database does your company use?
#304Re: Poll: What database does your company use?
#305Earlier quoted context omitted.
For everything you've said about Riak re: stability and happy scalability, that's exactly why I was excited to include it in this test. I would like to prevent myself/my team from acquiring too many of those scars, so please elaborate on what caused them ;) Especially if those scars came from Cassandra or HBase! The test hasn't been a "concocted scenario", it's measuring the performance[1] of a prototype implementati…
> The test hasn't been a "concocted scenario" Btw, b/c I can totally see why you'd read it that way, that particular barb wasn't directed at you, more directed at some of the public benchmarks touted by (non-distributed) NoSQL database systems. Re: cassandra, please see my reply to the sibling on this thread. Also, feel free to email me jamie@bu.mp if I can answer any specific questions for you with things we ran int…
Re: Poll: What database does your company use?
#306Voted "other". We're using the App Engine master/slave datastore for getcloak.com. We're moving over to the HRD soon; the role of the HRD in App Engine's future wasn't clear when we started building our app.
Re: Poll: What database does your company use?
#307Earlier quoted context omitted.
SQLite is indeed built into iOS and Mac OS X as well. Core Data's store uses SQLite as an option (XML and Binary are the others), and it is accessible via third party frameworks like FMDB.
It's also built into Android.
Re: Poll: What database does your company use?
#308You should add the Neo4j ( http://neo4j.org/ ) graph database to the list. Graphs are a much more modern and elegant way of storing relational data. I've used Postgres for over 10 years, but it's not a graph database. With graph databases you don't have to mess with tables or joins -- everything is implicitly joined. And Neo4j is ridiculously sweet -- store 32 billion nodes ( http://blog.neo4j.org/2011/03/neo4j-13-ab…