On Sun, 31 Jan 2016 03:01:30 +0530 dpb <dpb795795 at gmail.com> wrote:
> This will help me in deciding if moving to In-memory SQLite will > improve my application performance. I am done with adding indexes to > my tables in SQLite DB. I second Simon's question. If SQLite isn't fast enough, a good starting assumption is that it's not being used as efficiently as possible. Remember that problems at the SQL level can introduce delays that are orders of magnitude greater than the difference in speed between memory and disk. That's especially true if your database is small enough to consider switching to in-memory. --jkl