0
votes
1answer
15 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 …
3
votes
5answers
519 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 …
3
votes
4answers
171 views
Handling massive in memory objects in .NET
hey guys, here's the issue,
Essentially, I have a very large List containing in turn relatively large Dictionaries
So basically, I have a very big in memory collection.
I then serialize this …
1
vote
4answers
106 views
java in-memory on-the-fly class compilation (and loading)
I want to revisit an old question of mine about in-memory "compilation" of classes. Since about 1/2 a year have passed since I asked (and was somewhat answered), I'd like to re-raise the issue and see …
1
vote
2answers
42 views
Is the Workflow Foundation Storing State in Memory a Problem?
We have a contractor who has developed a system that uses the workflow foundation in .NET 3.5. One of my colleagues has concerns "around the workflow service storing state in memory and it possibly …
0
votes
1answer
48 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.
…
0
votes
3answers
199 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 …
3
votes
2answers
167 views
In memory ‘list appender’ for log4j
Is there an appender for log4j that only stores a list of the logging events (to be used in unit tests, to verify no error logs were written) ?
0
votes
4answers
252 views
SubSonic .Filter() in memory filter
hi guys,
i'm having some issues getting the .Filter() method to work in subsonic, and i'm constantly getting errors like the one below:
Exception Details: System.NullReferenceException: Object …
3
votes
2answers
194 views
[sqlite/C++] Saving to disk an in-memory database
I made a database through sqlite in c++.
The db has been created in memory (using the ":memory:" parameter insted of a filename), in order to have a very quick behavior.
The database is created by …
0
votes
2answers
74 views
Online Test using ASP.NET / Linq
Hi,
Working on a Online Test.
I have 3 tables
Questions
Subject
Topic
I have made a Store Proc which return 25 Random Records. I want to store it in-memory and then display 1 question at a time …
0
votes
1answer
154 views
Is there an existing DataSource that takes its data from DataTable in ASP.NET?
I'm making an ASP.NET Web Forms application. I would like to get a DataSource which takes its data from a DataTable, and this table is persisted among requests (preferably in session, not ViewState).
…
1
vote
2answers
66 views
Changing the program flow when running under a debugger
Is there any way of detecting that a debugger is running in memory?
and here comes the on Form Load pseudocode.
if debugger.IsRunning then
Application.exit
end if
Edit: The original title was …
1
vote
3answers
83 views
Using SQL statements to query in-memory objects
Suppose I have a collection of C++ objects in memory and would like to query them using an SQL statement. I’m willing to implement some type of interface to expose the objects’ properties like …
0
votes
5answers
300 views
In-memory DBMS’s for unit testing
I am looking for satisfactory options for unit testing my .NET DAL classes; since they're DAL classes, they access the database directly using ADO.NET. Presently I use an instance of a MSSQL database …
