Similar questions:

Is there a free, high-performance, SQL queriable, .NET in memory RDBMS? I've done some research in the past 10 hours, but didn't find one.

I've just tried SQLite in memory mode, but it's performance is not good. The following test took 4130 ms, only 2x faster than SQL Server.


As Kibbee suggested, I used a profiler to investigate the performance, and found SQLite's in memory mode is actually pretty performant, the bottleneck was NHibernate. Here is a benchmark of SQLite 3.6.3 (posted on 20-Oct-2008).

link|improve this question
2  
If you give SQL Server enough memory, it will almost be all in-memory.... – marc_s Jul 25 '11 at 4:55
1  
@caveman: oh, I was talking about 64 GB of RAM or more ..... enough memory.... – marc_s Jul 25 '11 at 6:07
1  
Did you use a profiler to see how much of that is actually attributable to the database? You are currently around 0.4 ms per iteration. That's not at all terrible performance. Not only that, but you're comparing SQL Server which is usually used to access data remotely vs. SQL Lite, which is used a local data store on your own machine. What are the requirements for your project? If you just need to store data locally on your machine, you might be better off just writing and reading to a flat file, instead of incurring all the overhead of a database. – Kibbee Jul 25 '11 at 20:28
1  
Go figure, nhibernate was a bottleneck. – Stephanie Page Jul 26 '11 at 20:47
2  
Idiomatic expressions are not always easy to google. Here's a link: en.wiktionary.org/wiki/go_figure – Stephanie Page Jul 27 '11 at 15:39
show 8 more comments
feedback

closed as not constructive by Will Aug 1 '11 at 20:47

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

Your problem seems to be not one of architecture but one of capacity. Altough RDBMS are highly optimized applications, they still require significant resources and most RDBMS that see heavy or complex usage will generally need to hit the disks. This brings us to cache, which is what many large applications use to increase response time by caching certain query results and serving those, instead of re-running the query every time. Software like Memcached (on linux) can be used to reduce the need to run queries.

Finally, if caching is not an option, you can simply provide more resources to the application. Like @marc_s said, significantly increasing memory (and cpu capacity, since by increasing memory you move the bottleneck to the CPU) is a good strategy to use.

link|improve this answer
feedback

If you want performance, skip the SQL and RDBMS parts. A simple datastructure in ram with a change log will easily outperform a database. You might need some better collections than the standard provided ones though, as they don't scale well.

link|improve this answer
feedback