Tagged Questions

7
votes
3answers
3k views

Alternative to the TimesTen in memory database

I just found "Has anyone published a detailed comparison between different in-memory RDBMSs?" that is related to my question. TimesTen (see also) is a In-Memory Database from oracle. It ...
7
votes
6answers
3k views

Has anyone published a detailed comparison between different in-memory RDBMSs?

There are quite a few independent and not-so-independent studies comparing traditional RDBMSs but I haven't managed to find any good material on in-memory databases. I am primarily interested in ones ...
6
votes
3answers
420 views

in-memory database in Python

I'm doing some queries in Python on a large database to get some stats out of the database. I want these stats to be in-memory so other programs can use them without going to a database. I was ...
6
votes
9answers
501 views

Why would someone need an in-memory database?

I read that a few databases can be used in-memory but can't think of reason why someone would want to use this feature. I always use a database to persist data and memory caches for fast access.
6
votes
4answers
189 views

Techniques for querying a set of object in-memory in a Java application

We have a system which performs a 'coarse search' by invoking an interface on another system which returns a set of Java objects. Once we have received the search results I need to be able to further ...
6
votes
11answers
2k views

Need an embedded/In Memory Database

I need an embedded/In Memory Database which support multithread access. Thanks! Leo
5
votes
4answers
222 views

looking for a stand-alone, in-memory data server with sequential access

We need an in-memory data structure / DB server with following characteristics: stand-alone server: will run on the same machine as the clients, so any kind of IPC is ok sequential access: get ...
5
votes
3answers
2k views

How do I create a sqllite3 in-memory database?

One of the appropriate uses for sqlite3 is "in-memory databases". This sounds like a really useful tool for my C++ applications. Does anyone have an example of how this is done in C or C++? I'm ...
3
votes
7answers
275 views

seeking recommendations for simple in-memory DB *server* (no persistence needed)

Should support multiple connections, preferably via ODBC. The clients will be running as separate processes on the same machine. No need for persistence, as the the clients will handle the persistence ...
2
votes
1answer
438 views

Does anybody have any experience with FastDB (C++ in-memory database)?

FastDB is an open-source, in-memory database that's tightly integrated with C++ (it supports a SQL-like query language where tables are classes and rows are objects). Like most IMDBs, it's meant for ...
2
votes
3answers
861 views

Simple and reliable in memory database for fast java integration tests with support for JPA

My integration tests would run much faster if I used in-memory-database instead of PostgreSQL. I use JPA (Hibernate) and I need an in-memory-database that would be easy to switch to using JPA, easy to ...
2
votes
1answer
132 views

Are there any in-memory databases that support computed columns?

We have a SQL 2005/2008 database that has a table with a computed column. We're using the computed column as a discriminator in NHibernate so having it in the database is proving to be very useful. ...
2
votes
3answers
1k views

In-memory Java database that I can persist (as a single huge blob of memory)

I am looking for an in-memory relational (SQL) database for Java (something like HSQLDB), whose whole state I can serialise. wholeDatabase.serialize(outputStream); ...
1
vote
3answers
299 views

Concept of In Memory Database and how to see if my data is being populated in HSQL DB?

I am using HSQL in memory database for test purpose of my application and using SQL Server as main database, now when am doing test then HSQL Database is being populated with same data that I have in ...
1
vote
2answers
228 views

Is there a free, high-performance, SQL queriable, .NET in-memory RDBMS? [closed]

Similar questions: Good scalable fault-tolerant in-memory database with LINQ support for .NET Alternative to the TimesTen in memory database Virtual Database in Memory SQLite Performance Benchmark ...
1
vote
3answers
177 views

Django In-Memory SQLite3 Database

I'm trying to have a purely in-memory SQLite database in Django, and I think I have it working, except for an annoying problem: I need to run syncdb before using the database, which isn't too much of ...
1
vote
3answers
186 views

How do in-memory databases provide durability?

The title says all, but more specifically, are there any databases that don't require secondary storage (e.g. HDD) to provide durability? Thank you in advance! Note:This is a follow up of my ...
1
vote
2answers
709 views

In-memory Java DB

Are there any DBs for Java that can be run in an embedded mode with some tables being stored in-memory while loading others from disk? H2 and JavaDB seem to be the two leaders for Java DBs and I know ...
1
vote
3answers
712 views

In Memory Database

I'm using SqlServer to drive a WPF application, I'm currently using NHibernate and pre-read all the data so it's cached for performance reasons. That works for a single client app, but I was wondering ...
0
votes
1answer
104 views

Which in memory database should i choose? [closed]

I have a very big database, around 2000+ tables and each tables has more than 1 million entries. Roughly estimated, this database should be over 10G. My goal is to migrate all entries into in memory ...
0
votes
0answers
21 views

what are the differences between database server mode, embedded mode and memory mode?

Many databases like H2 and HSQL provides server mode, embedded mode and memory but what are the differences between these three modes and when to use them?
0
votes
0answers
37 views

sybase database replication in memory

I have a sybase database that is in Europe, and I am working in US. I am running a code which reads and writes to the database continuously (threaded). I would like to consider a memory database which ...
0
votes
3answers
74 views

In Memory Database as a backup for Database Failures

Is in-memory database a viable backup option for performing read operations in case of database failures? One can insert data into an in-memory database once in a while and in case the database ...
0
votes
3answers
152 views

What would you recommend to read to a person who is going to write his own DB?

Since there are no answers to my previous question. I'm really thinking to implement a custom DB which will satisfy my requirements. Yes I know, sounds crazy. But what books, articles and etc. ...
0
votes
4answers
197 views

Is there in-memory SQL database supporting replication/clustering?

Free and stable is the winner. My plan is quite trivial - just put all the data in memory and use the cluster without changing the application code. Then, for persistence, I could just dump the data ...
0
votes
2answers
287 views

An In-memory database solution with quickest real time replication

We have a 10 thousand row table that has just 2 columns, a primary key and a second column that keep state. The problem is that we need this state to be replicated across 3 physical locations in the ...