The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
30 views

Generating instantiation code from in-memory model

Does anyone know a quick way to reverse-engineer an in-memory object graph in Java? What I need is a way to traverse an in-memory object graph and create Java instantiation/setter calls to re-create ...
0
votes
1answer
28 views

In-memory table multiple INNER JOIN

I am trying to update a report in SSRS. The query is build by another colleague using a stored procedure, whom has left the project and can't contact anymore. He used an in-memory table for all ...
1
vote
1answer
92 views

Sorting files in memory

D2010 Pro, Win Vista 32bit: I need to parse a directory and its subfolders for files and read the file information (name, type, size, date modified ... the Windows Explorer columns) into memory. So ...
3
votes
1answer
77 views

In memory Cache for Java that does not use JVM Heap space [duplicate]

I am looking for In memory Cache for Java that does not use JVM Heap space. I have looked into EhCache and JCS but both of them uses the Heap. I want it to be scalable.
0
votes
1answer
51 views

scikit-image save image to a bytestring

I'm using scikit-image to read an image: img = skimage.io.imread(filename) After doing some manipulations to img, I'd like to save it to an in-memory file (a la StringIO) to pass off to another ...
3
votes
1answer
102 views

Encrypt/Decrypt an animated gif in Python without storing the final copy to HD

Okay, let's try this again. I'm trying to encrypt an animated gif with PyCrypto to be sent to someone. After the receiver gets it, they should be able to run my pycrypto script and view the animated ...
0
votes
1answer
56 views

what one should use for open source in memory java caching?

What should one use (open source) for in memory Java caching when the caching is used for stock market project? I used hazelcast but it consumes too much memory.
0
votes
0answers
33 views

Dumping in-memory database to disk

I have created in-memory database(key-value pair) of my own. What is the efficient way to dump that to disk as a backup. I am also doing periodic writes to in-memory database. and i need to provide ...
0
votes
0answers
19 views

Why In-memory Mapoutput is necessary in ReduceCopier

I am focusing on the Mapoutput copier implementation. This part of code will try to get mapoutputs, and merge them into a file that can feed to reduce functions. I have the following questions. All ...
0
votes
1answer
23 views

Replay audio from in-memory source

I have some audio data (raw uncompressed audio waveform, no file format) in memory and want to replay it. Android-internal Mediaplayer seems to support only replaying of files stored somewhere on ...
0
votes
1answer
170 views

Persisting data on disk using Hazelcast

I have installed HazelCast 2.5. I want to persist my records into disk. I learned that MapStore does this job. However i'm not sure how to implement MapStore. Code i've written so far: public ...
0
votes
1answer
127 views

h5py In-Memory File and Multiprocessing Error

This one's for you HDF5 and multiprocessing gurus... First of all, I know that the python h5py and multiprocessing modules don't necessarily like eachother, but I'm getting an error that I just can't ...
1
vote
1answer
144 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 ...
1
vote
1answer
154 views

H2 DB in Memory Clean the RAM

I am using H2 DB in in-memory mode to process some data. My java application needs to keep the JVM on while dropping and re-creating or truncating or dropping all objects in H2 DB in each run. ...
5
votes
2answers
137 views

Library for extracting zip on the fly

I have a rather large ZIP file, which gets downloaded (cannot change the file). The quest now is to unzip the file while it is downloading instead of having to wait till the central directory end is ...
1
vote
1answer
183 views

How to load an in-memory image on a WinForms WebBrowser control

I'm developing a .NET 3.5 WinForms project in C# and I would like opinions on the best method to render an image in a WebBrowser control, directly from an in-memory source? By in-memory, I mean that I ...
0
votes
0answers
292 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 ...
1
vote
1answer
168 views

Generate (.zip) attachment in memory (with password)

Following problem: I would like to generate an attachment with php in memory for a business application. The attachment has to be password protected as well. Afterwards Id like to send this out with ...
0
votes
2answers
58 views

Size of a SQLite3 in memory database

I have a SQLite3 in memory database: sqlite3* database; sqlite3_open(":memory:", &database); Is it possible to get the exact size of the database in memory? I need to send the database to a ...
0
votes
0answers
21 views

Adding a network transmitted class to classpath at runtime

I have a scenario where I will receive the bytes of java class over the network. Is it possible to load this class into classpath and access it in the application to avoid class not found ...
0
votes
2answers
39 views

In-memory structure in Spring

I'm a Spring novice user. I have a database table which is static in nature and contains only a few records.I want a Map-like structure(id - name) that holds two columns of this table. This Map must ...
2
votes
2answers
121 views

Hibernate - How to make hibernate and in-memory grid solution work simultaneously with?

In my server I need to server high method calls rate (300 method calls per second). In order to stand this requirement I know that I need a cache/in-memory solution. The conflict is how to do that ...
1
vote
2answers
85 views

How to iterate through an in-memory zip file in Ruby

I am writing a unit test, and one of them is returning a zip file and I want to check the content of this zip file, grab some values from it, and pass the values to the next tests. I'm using Rack ...
2
votes
1answer
253 views

Symfony2 in_memory users provider issue

I have a Symfony2 application that loads users from in_memory_ user provider. The security.yml is the following: security: encoders: Symfony\Component\Security\Core\User\User: plaintext ...
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
3answers
111 views

which is faster: in-memory decompression or accessing uncompressed data in HDD

I have a dataset larger than main memory. After compression, it fits into memory. However, in-memory decompression is kind of compute-intensive. Compared to accessing uncompressed data in hard drive, ...
1
vote
1answer
93 views

In-memory GPG signing (or possibly using a temporary keyring)

I'm working on a web app that needs to create GPG signatures for files as they're uploaded by someone on staff. However, for security, I don't want to keep the signing key on the webserver, even ...
0
votes
0answers
64 views

Can I access In-memory tables with more than one thread (MySQL & Java)?

I have an time-critical JAVA application which uses an in-memory database (in my case MySQL) to answer queries. In order to speed the process up, I thought about using multiple threads (so that ...
1
vote
1answer
166 views

Use in-memory file as argument in SFTP

I need to open an SFTP connection in Perl and I need to use a dsa key file but I can't actually store the file on the hard disk for security reasons. I am trying to use Net::SFTP. my $sftp = ...
2
votes
1answer
491 views

what is the difference between Oracle coherence and Hadoop HDFS

What is the difference between Oracle Coherence and Hadoop HDFS, have read about HDFS and coherence (but nothing was clear) sounds both doing the same. Whether these are different technologies ...
2
votes
4answers
343 views

In-memory caching objects in java

I want to cache objects in memory. The requirements are as follows: Every record/object is associated with a unique key. 400-500 records/objects to be stored. If the number of records increase ...
0
votes
1answer
94 views

Is it possible to have zlib read from and write to the same memory buffer?

I have a character buffer that I would like to compress in place. Right now I have it set up so there are two buffers and zlib's deflate reads from the input buffer and writes to the output buffer. ...
2
votes
1answer
134 views

Java Hibernate rollback in memory changes

I use Hibernate to persist my in-memory data. Sometimes Hibernate refuses to commit changes in my objects due to some errors, and executes rollback. In that case my in-memory data becomes ...
0
votes
1answer
251 views

mssql - when /how to use table variables

I am scripting in PHP and using a MsSQL database. My script loops though a list of product ids. For each id it creates an object of product data. For the 'postage' field within the product object I ...
0
votes
1answer
74 views

In-memory java POJO XA-capable database

Good day! I am searching for java database that: stores data in memory as POJO without any serialization; provides HashMap-like interface; supports XA. Does such database exist?
0
votes
1answer
179 views

mssql/php - Looping through resultset and performing new query efficiently - In-Memory Tables?

I am fairly new to MSSQL and have never used In-Memory Tables and am not 100% sure if this is what I need. I have a result set from a query (which cannot be amended) and I loop through and display ...
2
votes
1answer
2k views

Unsuccessful: alter table XXX drop constraint YYY in Hibernate/JPA/HSQLDB standalone

I am trying to run some Hibernate/JPA examples using an in-memory HSQL DB. The error message I get is the following: 13:54:21,427 ERROR SchemaExport:425 - HHH000389: Unsuccessful: alter table ...
1
vote
2answers
526 views

Using in-memory sqlite android

I've been reading, browsing, searching a lot on this, I've criss-crossed stackoverflow back and forth many times and I managed to narrow my problem as much as I could. The only thing I do not ...
1
vote
1answer
873 views

Size of memory allocated to a SQLite in-memory database

If a create a in-memory sqlite database using syntax below, then what is the size of maximum memory allocated to it? my $dbh = DBI->connect('dbi:SQLite:dbname=:memory:'); What will happen if ...
2
votes
1answer
210 views

sharing common lookup in memory data across mappers : Hadoop

I have 30+ mappers and each mapper uses common lookup data which is in-memeory map. In each mapper I have to load this lookup data in setup function. I compute this lookup data by querying and ...
0
votes
1answer
38 views

In memory links or hidden properties to a node

Are in memory links or hidden properties to a node possible in Neo4j or using it's related languages(Cypher, Gremlin etc.,)?
1
vote
1answer
99 views

mahout without hadoop but other MR implementation

Is it easy to replace hadoop with a different map-reduce implemention (say, an in-memory map-reduce implementation) in Mahout ? Are Mahout parallel ML implementations closely coupled with Hadoop and ...
1
vote
1answer
112 views

Where to order a result set randomly - in database or in memory?

Data source will contain approx. 5000 records. I know that it is possible to order data randomly with orderby newid(). But data to be sorted should be paged. That means page n can not contain records ...
0
votes
1answer
311 views

Is there an “in memory” setting for SQL Server?

I'm curious if SQL Server can allow for the creation of in memory databases. Currently I'm looking at unit testing/integration testing some data layer code that is connected to SQL Server. In the ...
8
votes
3answers
716 views

Convert BufferedImage into byte[] without I/O

Hi I have a BufferedImage instance in memory and want to convert it into byte[] to encode as base64 string without I/O operation for performance consideration. I was using the following API: ...
1
vote
3answers
543 views

Loading existing Sqlite database into memory for fast computation

Does anyone knows how to load an existing database (Sqlite 3) into memory for fast computation in Perl, MATLAB or Java? Perl is preferred? I am working on a project that needs intensive computation, ...
2
votes
1answer
1k views

Saving in-memory H2 database to disk

How can I save/load full embedded h2 in-memory database to some file or directory in binary mode for faster loading. I want to use this for caching data so I don't have to run all the lines of create ...
1
vote
2answers
490 views

MongoDB Index in Memory with Sharding

The word on the street is that MongoDB gets slow if you can't keep the indexes you're using in memory. How does this work with sharding? Does a sharded only keep its own BTree in memory, or does ...
0
votes
1answer
324 views

An efficient trie implementation for .net

I am looking for a trie implementation for .net. I am planning to use it as the index structure for my in-memory object pool. It need not be thread safe (as only one thread will be updating it) but ...
9
votes
2answers
373 views

Cascade In-Memory Compilation with javax.tool

Eclipse's JDT compiler provide an interface INameEnvironment which defines method findType(...) enable you to do cascade compilation. Curiously I would like to know if there are any means to do it ...

1 2 3