An in-memory database (IMDB; also main memory database system or MMDB) is a database management system that primarily relies on main memory for computer data storage. It is contrasted with database management systems which employ a disk storage mechanism.
0
votes
0answers
4 views
ehcache asynchronous write/put example
Hi I'm trying to implement ehcache into our product to handle caching large amounts of data. While doing some research I saw that asynchronously caching can be beneficial for larger queries so that ...
0
votes
1answer
11 views
HSQLDB inmemory mode doesn't delete files on shutdown
I'm using HSQLDB version 2.2.9 for testing purposes.
When I create named in memory database, files aren't deleted after calling shutdown function. On my filesystem I have folder DBname.tmp and files ...
0
votes
2answers
24 views
Inmemory SQL DB options with support for analytic functions (parition over)?
Working on adding unit testing around database code on a Java legacy project. Some of SQL (Oracle) contains analytics functions .. (i.e. parition over syntax). Is there any in memory SQL DB options ...
0
votes
0answers
49 views
Informix compatible in memory Database for unit testing Java Hibernate application
I'm trying to write unit test cases for a data access layer and we use the Informix database. Since the Informix dialect of SQL uses the ...
1
vote
4answers
54 views
data bridge between Java and Python daemons
I have two background processes running on linux machine. One is Java and second one is in Python. What would be most efficient way to exchange data between these two apps ? I am talking about text / ...
0
votes
1answer
52 views
hsqldb inmemory ant target junit test
I have defined an Ant target containing in-memory HSQLDB:
<target name="create.tables" depends="-prepare.test">
<property name="db.connection.url" value="jdbc:hsqldb:mem:adb"/>
...
0
votes
1answer
26 views
How do I access an in-memory database using Sequel.sqlite?
I am accessing the in-memory database using Sequel in a Sinatra application. I want to access the in-memory database used in my application from the command line on my local host, as well as Heroku.
...
0
votes
1answer
31 views
Slow backup routine message in Starcounter
I have Starcounter installed on my laptop (i7 mobile). Checking the logfile I found that I had several messages like this:
Memory manager unable to acquire the SE_MANAGE_VOLUME_NAME privilege. ...
0
votes
0answers
52 views
NHibernate - Business layer testing with in-memory SQLite database. How to change database configuration?
I use Fluent NHibernate code to create a MySQL database SessionFactory. No config files (just one value for the connection string in configuration - connectionStrings section of configuration file).
...
1
vote
0answers
39 views
Virtual properties with count = 0 are null
I'm using Effort (https://effort.codeplex.com/) which is a "ADO.NET provider that executes all the data operations on a lightweight in-process main memory database instead of a traditional external ...
0
votes
1answer
38 views
Hsql create testdata from existing database
Does anybody know a way to generate complex testdata using an existing database for in memory hsqldb?
So my junit tests will be able to use a part of correct data.
The concrete problem is the ...
0
votes
2answers
84 views
In Memory Cache Database for MS SQL
Is there a in-memory database that can be coupled with an Ms sql server.ie i will use an in memory database system as a cache and the ms sql as my main backend database.
forexample-
Timesten ...
-1
votes
2answers
83 views
What is a good technology for storing big data in-memory for analytics? [closed]
If I have a non-distributed environment with an abundance of RAM, what would be a good strategy for storing large amounts of data (i.e. 100s of millions of records potentially) and being able to ...
1
vote
1answer
46 views
Retrieving entries from a partition in Hazelcast
Is it possible to retrieve the entries from a Partition when the Partition-id is given?
For example : If I enter the Partition-id as 3 , Can I get the entries in that particular partition only?
...
1
vote
0answers
75 views
How is Partitioning done in Hazelcast
I am using Hazelcast v2.5. I have a few doubts related to partitioning in a cluster.
How are the partitions identified ?
When a m.get request is made how does Hazelcast identify in which partition ...
0
votes
1answer
36 views
Riak in-memory store per-key overhead
As a follow-up to THIS question I asked earlier, are there any estimates of the per-key overhead in Riak when using the in-memory backend? Google hasn't helped much thus far, most searches leading me ...
0
votes
1answer
21 views
Is it possible to get the size of an hsqldb in-memory database?
I am testing various serialization strategies for storing objects in an hsqldb database. Normally, I would use a file based database, but in my tests it is convenient for me to use an in-memory ...
0
votes
0answers
91 views
In-memory database slower - retrieving data from DB
I have been trying to evaluate BrightStar DB for my project initially what I did is -
Using brightstar DB (server sw) I stored my SQL Server database table into its default store i.e. file location ...
0
votes
1answer
51 views
Unable to update record in brightstar database
Not sure if anybody in community has got a chance to work on Inmemory database(bright star) well I am trying to update a record through code below but unable to do so.
public void ...
3
votes
0answers
111 views
Using Linked List in Hazelcast
I was just wondering if I could use Linked List as a data structure in Hazelcast because my requirement demands this. At present there is only Distributed Map , Distributed Queue , Distributed Set and ...
0
votes
1answer
37 views
MySQL: Is it possible to have slave in-memory database?
Is it possible to configure slave in-memory database?
Master db is common, slave for read only operation could suit well into in-memory storage.
If it is not possible with MySQL, what are other ...
1
vote
0answers
122 views
Choosing NoSQL database for Real-Time server
I am writing a Java2EE WebServer over Jetty server
The server manages a real-time operation that works on heavy load of reads & writes to the schema,
I've decided to work with an in-memory NoSQL ...
0
votes
2answers
111 views
InMemory Database for DotNet applicaiton [closed]
I want to use Inmemory database for an application to be developed in DotNet. The category of Inmemory DB is (Key Value/Tuple Store) I did some googling but couldn't come to any conclusion I read ...
0
votes
1answer
57 views
How to use HSQLDB transfer tool
I need to use HSQL transfer tool but can not find the correct place to run it. I read some threads says that it is in the tool menu in Database Manager. But it is disabled on mind. Then I futher find ...
1
vote
1answer
356 views
When using HSQLDB in-memory database, Hibernate/JPA EntityManager does not take parameter for HSQL script
The following code works well with MySQL.
But the same code fails when switching HSQLDB in-memory database (for unit test),
Query query = entityManager.createQuery("SELECT c FROM ...
0
votes
0answers
69 views
php own in-memory db - apc_fetch vs. sqlite
i'm building my own very simple in-memory graph db in php (set of some classes referencing to each other). i would like to keep the initialized db in memory (up to <1GB) for later use with other ...
2
votes
2answers
163 views
Sharing data between C++ and C# using an in-memory SQLite database?
I am working in a project that features several C++ and a few C# components. I am currently working on a new C# component that needs to share data with a C++ component (there may be more components ...
1
vote
0answers
207 views
Efficient In-memory collection or database for java [closed]
I have a 4M records. Each record has about 5078 fields at max. Some might have less but this is the upper limit.
In the beginning, this data structures holds no data.
I have also a stream of files. ...
1
vote
1answer
145 views
Redis Data Structures Using up a lot of memory
I ran an experiment in Redis to test memory usage of large keys. I loaded 16 Million strings
with 50-60 characters (bytes), roughly taking 802 MB on disk into a sorted set in Redis. It
used up (got ...
0
votes
1answer
106 views
How do I connect Hazelcast with Hbase?
I have both Hazelcast and HBase . I have million entries in my HBase . How do I establish a connection with HBase from Hazelcast so that I access these entries from Hazelcast. If that is not possible ...
1
vote
0answers
108 views
How to implement an In-Memory database accessible from multiple R sessions inside a JVM?
I'm writing a program that spawns multiple R sessions inside a single JVM. I need to share data between these sessions and I'm writing files (RData/txt) on to the disk for now. I did a bit of reading ...
1
vote
1answer
94 views
Column “name_c” not found error when running a query on H2
I'm working with an in-memory instance of H2 for unit tests and I'm trying to run the following query:
SELECT name AS name_c FROM users ORDER BY lower(name_c)
(The real query is much more ...
0
votes
1answer
153 views
Unable to Create map entries in Hazelcast
I am using Hazelcast v2.5 and Maven plugin in Eclipse . I tried running an example program in Eclipse which creates 3 map entries in the ABCD namespace . When I run my code in Eclipse it shows this ...
-1
votes
1answer
84 views
How to syncrhonize on-site in-memory/no-sql datasources with central database in real-time
I have an interesting architecture problem.
My scenario is this:
I need to centralize data that's currently stored within on-site SQL Server 2005 databases sitting within 60 storefronts, soon to be ...
0
votes
0answers
76 views
In-memory database demo
I need to make a demo to compare the performance between in-memory database vs traditional one(on-disk database).
I tried:
1. H2 vs mydql
2. Mysql cluster Storage memory vs disk
Those gave me the ...
6
votes
1answer
334 views
Why is Redis SET performance better than GET?
According to the Redis benchmarks , Redis can perform 100'000 SET operations/s, and 80'000 GET operations/s. Redis being an in-memory DB, this seems surprising because typically one would expect that ...
1
vote
1answer
49 views
How do I find the number of namespaces in Hazelcast?
Using ns command i created a number of namespaces in my console. I have a problem now. I have created more than 5 namespaces and I have lost track of them ! I want to see the number of namespaces ...
1
vote
1answer
36 views
Creating another map function in Hazelcast?
When i run hazelcast on my terminal I use m.put to create a new map function.
I want to create another map function with a different name. Is it possible to do so?
Is there a seperate command to ...
1
vote
1answer
71 views
How is batch processing done in Hazelcast?
I am just a beginner in Hazelcast. I am still learning the basics of it. How is batch processing being done in Hazelcast? Is there any related architecture for it?
1
vote
0answers
122 views
Play 2 - inMemoryDatabase() precision for FakeApplication
In order to launch a test based on a fake application using memory database, Play Framework 2 promotes doing this way:
FakeApplication(additionalConfiguration = inMemoryDatabase())
Is it a ...
0
votes
0answers
294 views
Optimizing memory usage of large Redis Hash and Sorted set
As part of a distributed crawler, we store all URLs in a Redis sorted set, which is the crawl queue and Redis hash (to de-duplicate and mark visited URLs).
We have about 11M URLs for various domains ...
0
votes
0answers
138 views
activerecord in-memory shared cache
Is possible to use the "shared cache" of sqlite3 through activerecord?
(see: http://www.sqlite.org/inmemorydb.html)
I use activerecord standalone (without rails) in a JRuby Swing App, with some ...
-3
votes
1answer
119 views
Which is better NoSQL or InMemory database or database in cache
I have a oracle database in which almost 150 million records are created daily in a table,(approx. 8GB) of data.
This table is partitioned on a per hour basis, to balance the load.
Now I have to do ...
1
vote
3answers
295 views
Filtering / Sorting huge data in Java
Let me first brief about the scenario. The database is Sybase. There are some 2-3 k stored procedures. Stored procedures might return huge data (around million records). There will be a service ...
0
votes
1answer
66 views
How do you get SQLite 3 to handle memory mode from a URI database?
I want to create a shared, in-memory database with SQLite by passing it URI like file:memdb1?mode=memory&cache=shared.
The following code looks simple enough to get the job done:
#include ...
1
vote
1answer
190 views
DBIx::Class schema handling differs between in-memory and on-disk SQLite
Update: Solved my problem
Again I have tripped over the behaviour of make_schema_at (see the comment in the code about @INC being modified, I already filed a bug report for that).
The reason my code ...
0
votes
2answers
118 views
release_mode, Pooling, Max Pool size for InMemory SQLite with FluentNHibernate
I'm having some trouble with Sqlite in memory.
I have a class that has a CPF field - similar to US' SSN. As a bussiness rule, the CPF must be unique in the system.
So I've decided to make a check ...
1
vote
0answers
86 views
TimesTen: Cannot connect to TimesTen daemon
I'm trying to create a prototype application using TimesTen insted of home written IMDB. When I install TimesTen, TimesTen Data Manager service is hosted and also few subdaemons and server. Everything ...
0
votes
0answers
38 views
Django: Query requests against an in-memory B-Tree
I would like have django load an in-memory b-tree that I have implemented and carry out RESTful requests against it. Is there a way I could fork my another django-process and have it interface with ...
0
votes
1answer
159 views
How to use PostgreSQL as an in-memory SGBD (similar to HYPERSONIC) for unit testing?
I'm trying to use PostgreSQL with Spring, Maven and Hibernate as an in-memory SGBD when running my tests.
The error I'm getting is that the database doesn't exist.
Caused by: ...


