Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k views

Is it possible to generate and return a ZIP file with App Engine?

I have a small project that would be perfect for Google App Engine. Implementing it hinges on the ability to generate a ZIP file and return it. Due to the distributed nature of App Engine, from what ...
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
6answers
677 views

algorithm: gigantic number of very sparse bit arrays, which encoding to use

EDIT TWO Because my "append only" is obviously confusing people, I explain below what I mean here by "append only". I've got a special need and the most important concerns are: in-memory very low ...
6
votes
3answers
407 views

JavaCompiler from JDK 1.6: how to write class bytes directly to byte[] array?

So I recently learned of the new JavaCompiler API available in JDK 1.6. This makes it very simple to compile a String to a .class file directly from running code: String className = "Foo"; String ...
6
votes
2answers
1k views

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 ...
6
votes
2answers
1k views

Key-Value Stores vs. RDBMs vs. “Cloud” DBs (SDB)

I'm comfortable in the MySQL space having designed several apps over the past few years, and then continuously refining performance and scalability aspects. I also have some experience working with ...
5
votes
2answers
1k 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) ?
5
votes
1answer
3k views

How do I open an in-memory database file into sqlite3

I'm on a system with no access to disk. My C program has in memory the contents of a valid, small, sqlite3 file (received over the network). I would like to use sqlite3's C API to open and access this ...
4
votes
4answers
109 views

Best choice for in memory data structure for IP address filter in Java

I have file that is CIDR format like this 192.168.1.0/24 and it is converted into this two column strucutre 3232236030 3232235777 Each string IP address convertion happens with this code: String ...
4
votes
2answers
212 views

Random error when testing with NHibernate on an in-Memory SQLite db

I have a system which after getting a message - enqueues it (write to a table), and another process polls the DB and dequeues it for processing. In my automatic tests I've merged the operations in the ...
4
votes
8answers
664 views

C++ in-memory Key-Value stores

I'm looking for suggestions regarding in-memory key-value store engines or libraries, that have C++ interfaces or that are written in C++. I'm looking for solutions that can scale without any ...
4
votes
6answers
982 views

c++ what in-memory compression library?

I already googled for in-memory compression and found quite a few libraries that offert this functionality. the zlib seems to be widely used - but it also seems to be quite old. I'm asking here ...
3
votes
1answer
43 views

Classpath of In-Memory Java Compile

Understand pass options to JavaCompiler.getTask method call could set the classpath for the compiler. However it doesn't work when we are doing in-memory compilation because the compiler cannot reach ...
3
votes
6answers
263 views

Relational DB in-memory?

I have a simpleton question on Redis. If the key to it's performance is that it's in-memory, whey can't that be done on a regular SQL db?
3
votes
2answers
218 views

Migration to cloud database

I am assessing the possibility of my organization (software as a service org) migrating parts of our existing disk-based DBs to an in-memory cloud-based DB model (hosted in our datacenters). The ...
3
votes
2answers
532 views

Java in-memory file structure?

I need to do a lot of things with resources on the fly: parsing xsd/xml docs, building and compiling java classes, package them into jars ans wars, persist in DB, deploy them as OSGi, etc. Most of ...
3
votes
2answers
105 views

Is there a way to read and write in-memory files in R?

I am trying to use R to analyze large DNA sequence files (fastq files, several gigabytes each), but the standard R interface to these files (ShortRead) has to read the entire file at once. This ...
3
votes
3answers
502 views

Can in-memory SQLite databases scale with concurrency?

In order to prevent a SQLite in-memory database from being cleaned up, one must use the same connection to access the database. However, using the same connection causes SQLite to synchronize access ...
3
votes
2answers
114 views

Filter and Find from in-memory data sets

I have several medium-sized data sets in-memory that I need to be able to filter and find information from quickly. The data sets are small enough that I don't want to take the performance hit of ...
3
votes
2answers
810 views

Achieving Fast Lookups for a Large Dataset: MySQL MEMORY(HEAP), Memcached, or something else

Currently working on a project that is centered around a medical nomenclature known as SNOMED. At the heart of snomed is are three relational datasets that are 350,000, 1.1 mil, and 1.3 mil records in ...
3
votes
3answers
926 views

C++ distributed programming

Is there any library for distributed in-memory cache, distributed tasks, publish/subscribe messaging? I have used Hazelcast in Java, I would like something similar. I know that Memcached is an ...
3
votes
4answers
242 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 ...
3
votes
3answers
2k views

Using Sqlite InMemory DB for unittesting MSSQL-DB

I am trying to implement this solution: NHibernate-20-SQLite-and-In-Memory-Databases The only problem is that we have hbms like this: <class name="aTable" table="[dbo].[aTable]" mutable="true" ...
2
votes
0answers
55 views

Using .Net, is it possible to use the MS graph control to generate a graph without a UI?

I want to create a graph using the MS graph control but this needs to be put on a form for it to produce the graph that I can save in a file. However, since I want to generate a graph from a Windows ...
2
votes
1answer
227 views

Unit tests with in memory H2 db get terribly slow

We have a large set of tests running against an in memory database. Each test creates its schema. So far we were running those tests against a HSQL DB, but since H2 is supposed to be faster we tried ...
2
votes
3answers
224 views

ASP.NET MVC 3 in-memory data store

I have a project which provides users with a list of current tasks that need to be completed. Any user can complete any task, and so to ensure that only one user is working on a task at a time I need ...
2
votes
2answers
400 views

Looking for distributed, in-memory Graph DB

Is there a database which will satisfy all (or at least most) of this requirements? Graph oriented - optimized for storing graphs and traversal(e.g HyperGraphDB, Neo4j) Running in memory, but having ...
2
votes
7answers
404 views

Is there a good in-memory database that would act like DB2

I am currently using DB2 to do unit tests, but it is sometime quite slow. I would need a good in-memory database that would include all the feature of DB2. Does this type of in-memory database exist, ...
2
votes
1answer
1k views

Convert BMP to PNG in memory for Clipboard pasting in .Net

This similar question's answers all require the file to be saved. However, I'm trying to convert the file and then copy it to the clipboard. How can I convert a Bitmap (or any image) to a PNG without ...
2
votes
2answers
146 views

.net 2.0: What's the best way to deal with in-memory DataTables?

I have a csv file that I import into a DataTable. Furthermore I've created a TableAdapter with several queries. Is it somehow possible to execute the queries associated with the TableAdapter directly ...
2
votes
2answers
655 views

Open in memory XML string as an Excel workbook with out saving uisng windows Forms C#

I have an excel string (which I built) in memory; the code looks something like this: public static void exportToExcel() { const string startExcelXML = "<xml ...
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
2answers
218 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 ...
2
votes
2answers
700 views

Load SQLite database from remote SQL Server?

I'm using SQLite ADO.NET in my project so that I can unit test using an in-memory database. I want a copy of my real database but it is across the server. From what I've read, it looks like I have ...
2
votes
2answers
2k views

MySQL Cluster with MySQL innoDB persistent store

We are working on a database solution for a high available (5 9s) application with high performance and data consistency needs. We are planning to use MySQL Cluster as the primary in-memory datastore ...
1
vote
2answers
42 views

How can I programmatically create a tar archive of nested directories and files solely from Python strings and without temporary files?

I want to create a tar archive with a hierarchical directory structure from Python, using strings for the contents of the files. I've read this question , which shows a way of adding strings as ...
1
vote
1answer
23 views

Are MySQL in-memory tables global?

I have a MySQL stored routine where I'd like to use a temporary data table to store intermediate results. To avoid having to create a "normal" table, I want to use an in-memory table that goes away ...
1
vote
2answers
65 views

Is there any way to know if specific part of binary/file is in-memory at a moment?

What win32 APIs are useful to code a tool as described here: My goal is a tool that can be used to check/report if a specific part of a file is located/available in-memory (RAM) or in virtual memory ...
1
vote
4answers
68 views

how to build a in-memory server side cache in php?

I am trying to reduce the amount of database access by providing a in memory cache. I understand that I can get a cache by using session and cookies, however this only works on a per client basis. if ...
1
vote
3answers
107 views

How to validate XML against Schema in MEMORY with java?

I have created a dom tree in memory and I want to validate it before outputing it. I saw many codes are for validate xml FILE against a schema, but How to validate it in memory? Thanks in advance
1
vote
4answers
116 views

How to create an in-memory JarFile?

I'm trying to write a function like: public Map<String, Document> getTestXml(JarFile jarFile) { Map<String, Document> result = Maps.newHashMap(); Enumeration<JarEntry> ...
1
vote
3answers
88 views

Are you in favour of in-memory filtering or using SQL queries on large number of records in a ruby on rails app?

I'm writing a rails finder query that pulls out records for articles sorted by the highest numbers of approved and public comments per article. Which is the best way to run such a query in Ruby on ...
1
vote
0answers
85 views

NHibernate problem with In-Memory SQLite and IncrementGenerationStrategy

I started getting a strange exception in my unit tests, using in-memory SQLite, when I switched my ID generator to "Increment". When I try to save a new entity to an empty table, I get: ...
1
vote
1answer
387 views

c# - Convert doc to pdf in memory

We're using a 3rd party XML messaging service that requires an embedded PDF file when sending a file. We currently have word files we'd like to send using this messaging service, which requires us to ...
1
vote
1answer
211 views

Warning when using Apache Derby in memory

I have a number of unit tests, which use Apache Derby in memory. My connection url is: jdbc:derby:memory:srf.derby;create=true I discovered that each time, when a method marked as @Transactional is ...
1
vote
4answers
334 views

What would be an appropriate data-structure to store a 2D table structure in memory?

I have a 2D table structure that I am reading from an underlying database, and I am wondering, what is the best in-memory data-structure to use to store it into. Where, it can be accessible for ...
1
vote
4answers
266 views

Windows in-memory cache for enterprise

Do you know any memcached analogue for using for enterprise in Windows. Any commercial in-memory cache system?
1
vote
3answers
307 views

How to extract a set of records with a specific field from a Delphi in-memory data table

I've an in-memory table that I've populated with data from a custom-format file. I'd like to use this as a repository for the data without duplicating it elsewhere. Each record has a special tag field ...
1
vote
1answer
1k views

In-memory unmarshalling, from an XML string and its schema stored in a string too, possible?

Let's suppose I store an XML string into a variable String resp = new String("<?xml version=\"1.0\" encodin..."); and the schema definition related to this XML in another one: String xsd = new ...
1
vote
2answers
705 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 2