Tagged Questions

A RAM disk or RAM drive is a block of RAM (primary storage or volatile memory) that a computer's software is treating as if the memory were a disk drive (secondary storage)

learn more… | top users | synonyms

13
votes
2answers
452 views

Sharing large datasets between Matlab and R

I need a relatively efficient way to share data between Matlab and R. I have checked SaveR and MATLAB R-link, but SaveR formats Matlab's binary data as text strings first and then prints them to an ...
10
votes
4answers
688 views

How can I create a ramdisk in Python?

I want to create a ramdisk in Python. I want to be able to do this in a cross-platform way, so it'll work on Windows XP-to-7, Mac, and Linux. I want to be able to read/write to the ramdisk like it's a ...
6
votes
5answers
1k views

how ram disk can improve the productivity of a developer?

I've seen one idea on this blog, it seems a great solution especially if you work on a laptop because you don't have to fear the thunder, but you might fear the blue screen of death. We can also use a ...
5
votes
2answers
2k views

In-Memory File System for WIndows

I have a command-line executable which I need to run from Java on Windows XP. It uses files as input and output. But I want to avoid the overhead of file IO, so I thought of an in-memory RAM file ...
4
votes
1answer
485 views

EhCache BigMemory vs Diskstore on RAM disk

How is the performance of BigMemory of Enterprise Ehcache compared to Diskstore of Ehcache Community Edition used with RAM disk? Big Memory permits caches to use an additional type of memory store ...
4
votes
3answers
366 views

RAMdisk slower than disk?

A python program I created is IO bounded. The majority of the time (over 90%) is spent in a single loop which repeats ~10,000 times. In this loop, ~100KB data is generated and written to a temporary ...
4
votes
5answers
2k views

write-through RAM disk, or massive caching of file system?

I have a program that is very heavily hitting the file system, reading and writing to a set of working files. The files are several gigabytes in size, but not so large as to not fit on a RAM-disk. ...
3
votes
2answers
149 views

How to reduce File IO on legacy app that writes to disk, and app that reads it in real time (.NET)

My situation is I have a legacy app which I don't have the code for which writes out data to disk every second or so. I have a C# program I wrote which every second reads what was written to disk and ...
3
votes
4answers
233 views

emulating a physical disk to speed up execution?

We have a command line exe that takes input from a text file and produces an output text file. It is used for complex industrial simulations. The source code for this exe is long gone. Now it was ...
2
votes
2answers
58 views

How to speed up reading of a fixed set of small files on linux?

I have 100'000 1kb files. And a program that reads them - it is really slow. My best idea for improving performance is to put them on ramdisk. But this is a fragile solution, every restart need to ...
2
votes
3answers
847 views

Can a java RAM disk be created to be used with the java.io.* API?

I'm using a 3rd party library which basically creates an output directory with different kinds of files and subdirectories inside. I would like to be able to write unit tests to confirm that the ...
2
votes
2answers
462 views

Bash: Chroot command passing 2 string parameters or better run a series of commands

I would like to do something like this: chroot /mount-point /path/to/script $var1 $var 2 Will this work? Will the chrooted Perl script be passed on these 2 parameters? If not, how to do this? ...
2
votes
3answers
389 views

What is the /dev/shm equivalence in Windows System?

I was wondering how can I make the IO faster by writing and reading temporary files to main memory. I've used to write to /dev/shm in Linux. But now I'm in Windows 7. Anyone knows the answer ? ...
2
votes
4answers
464 views

wget to memory (bypassing disk)

Is it possible to download contents of a website (a set of html pages) straight to memory without writing to disk? I have a cluster of machines with 24G ram each, but I'm limited by a disk quota to ...
2
votes
2answers
2k views

Problem with boost memory mapped files: they go to disk instead of RAM

I am trying to understand how Boost memory mapped files work. The following code works, it does what it is supposed to do, but the problem is that the file it generates is stored on disk (in the same ...
2
votes
1answer
2k views

Best opensource ramdisk?

I am searching for opensource,platform independent ramdisk so that I can do some modifications in ramdisk application to work with my specifications. Is there any possibility that I can achieve this? ...
2
votes
2answers
582 views

ramdisk with a file mirror

I wanted to speed up compilation so i was thinking i could have my files be build on a ramdisk but also have it flushed to the filesystem automatically and use the filesystem if there is not enough ...
2
votes
10answers
5k views

Can I use a RAM disk to speed up my IDE?

Duplicate: RAMDrive for compiling - is there such a thing? I have an idea how to speed up my IDE. I want to create a RAM disk and move my solution onto this virtual disk. I think that this can ...
1
vote
2answers
82 views

solaris 10, java 6 , file.exists cant see the existing file

i have a code that composes millions of small files into tar archives, and therefore i decided to use the /tmp folder of my solaris machine. then i created a ramdisk and instead of /tmp i now use ...
1
vote
2answers
57 views

Should I use a ramdisk for pictures that are converted and removed?

I have a little program here (python 2.7) that runs on an old machine and it basically keeps getting pictures (for timelapses) by running an external binary and converts them to an efficient format to ...
1
vote
1answer
160 views

Unzip file into memory, tweak file, zip and stream to the client (Node.js)

I am trying to dynamically serve Zip files, I would like to unzip a file 1x on script launch, and on every request, include a string in a text file and stream the whole zip file to the client. To ...
1
vote
1answer
237 views

RAMdisk without previous instalation with user privileges (portable mode) on windows

Is there a way to use some kind of RAMdisk without previous instalation of RAMdisk software of any kind with user privileges on system windows (XP, Vista or 7 at least)?
1
vote
4answers
69 views

Is it possible in Windows to use part of memory as a virtual file

I'm using a commandline tool to do some processing on a file. The thing is that this file should not be stored on disk (security reasons). So I was wondering whether it's possible in Windows to use a ...
1
vote
2answers
299 views

PostgreSQL on RamDisk: Size of work_mem etc.?

I am experimenting with running PostgreSQL on a ramdisk on windows. The way I did it was to simply place the data directory on the ramdisk. Without having done any specific benchmarks, the ...
1
vote
1answer
176 views

Making file wrap around when using fwrite

I am using an embedded system running linux.I use a ramdisk filesystem on the embedded target. My application captures real-time data and does Standard C "fwrite" to a file in this ramdisk fs.As there ...
0
votes
0answers
17 views

Run MySQL in memory with slave for persistence

Let's presume that I need to maximize my write performance and am willing to take a risk of a few minutes of lost data. My use case is a "burst" of activity for a few hours which will subside. The ...
0
votes
1answer
55 views

unix socket file on disk vs tmpfs on ubuntu

Is there a difference in speed (regardless of how infinitesimal) if you place a unix socket file on disk rather than tmpfs/ramdisk (ubuntu)?
0
votes
1answer
98 views

FAT12/FAT16 - what determines the sector counts? [closed]

Currently i am reading the Ramdisk source code. And in a RamDiskFormatDisk function, i get a problem. A piece of code is as following: if (fatEntries > 4087) { fatType = 16; fatSectorCnt ...
0
votes
1answer
112 views

solaris 10 (sparc64) ramdisk (like shmfs or tmpfs)

There is an ramdisk capability in Linux, which is achieved with mounting shmfs of tmpfs, like: # mount -t shm shmfs -o size=20g /dev/shm or # mount –t tmpfs tmpfs /dev/shm Also, some linuxes ...
0
votes
1answer
32 views

Article on running greenplum on Ramdisk

Where can I find good articles on running Greenplum on Ramdisk? There are lot of artciles related to running postgres in Ramdisk, But I could not find for Greenplum. Can somebody help?
0
votes
1answer
76 views

What is the best file system for a small ramdisk under Linux?

An embedded Linux system I am working on has a 4MB ram disk. It is currently formatted with ext2. It seems that even when empty, there is only about 50% free space ! At the moment, it is used for ...
0
votes
1answer
312 views

Creating a Virtual Disk Mount Point

I have used the ImDisk library with the .NET wrapper to create a Virtual Disk in my C# application. However, after I create the device, I apparently need to create a Mount Point as well for the device ...
0
votes
2answers
146 views

ImDisk API issue in .NET

I have been working on implementing ImDisk into my C# project, where I can create RAMDisk on the fly. Unfortunately due to absolutely no examples, I am at a bit lost as to how to resolve this issue. ...
0
votes
1answer
505 views

Memory-Mapped Files vs. RAM Disk

For the game Minecraft, the general approach when running the server application is to run it in a RAMDisk, as it is uses hundreds of tiny files for world generation, and the I/O speeds are the major ...
0
votes
2answers
230 views

Do ramdisks really improve vs2010 performance?

Do ramdisks really improve vs2010 performance (general and build times)? If so, what are all the steps I have to do to get the maximum benefit of it? Can it also help resharper? Thanks, André ...
0
votes
1answer
52 views

Windows Batch Filesystem Backup

Update: Ehh -- Even though this question isn't "answered", I've just emptied my pockets and purchased an SSD. My ramdisk software was going to cost just about as much anyway. I'm not particularly ...
0
votes
1answer
186 views

How to load a matlab MAT file from memory?

Let's say I have an array of the bytes of a mat file loaded into my Matlab shell. One way to parse this data is to write it to the disk, and then use Matlab load function. Is there a way to do that ...
0
votes
1answer
133 views

Direct copy Ramdisk image to Ramdisk device

Right, so I've got a Ramdisk image on a mounted device at, say, /mnt/sda1/Ramdisk.img . I want to copy the raw data directly to a ramdisk device at /dev/ram0, in such a way that there will be no need ...
0
votes
1answer
179 views

RAMDisk reliability

I was looking at the existing RAMDisk discussions ... and none seem to bring up any reliability issues. I recently started using a Dataram ramdisk for my source code and am wondering if there are any ...
0
votes
1answer
80 views

Is there any point implementing my own file cache in a Windows app?

I have a Delphi app that references a datafile of 28-byte records. The file is written sequentially but read randomly. The datafile is split into N physical files which are rolled over at 10 megs or ...
0
votes
1answer
416 views

How to know how much physical Ram allocates imdisk to a ramdisk

Lately I'm using imdisk http://www.ltr-data.se/opencode.html/#ImDisk I am making a 1 GB ramdisk with this command: imdisk.exe -a -t vm -m V: -s 1024M -p "/fs:NTFS /q /y /v:Name /c" I want to know how ...
0
votes
3answers
1k views

How to create a RAM Drive in Windows 7 (Windows 2008 R2)?

This isn't necessarily a programming question, but I've hit a performance bottleneck with disk IO and I'd like to try writing and reading from RAM instead of the hard drive. I want to create my file ...
0
votes
2answers
389 views

Why is the root filesystem is loaded into a ramdisk?

I am studying the boot process in Linux. I came across this sentence "RAM is several orders of magnitude faster than a floppy disk, so system operation is fast from a ramdisk" The kernel will anyway ...
0
votes
1answer
280 views

Question regarding Ramdisk image

I have just started using 0xlab's android port. I have been successfully able to create the file system and have been able to flash it as well. However, I have 2 questions to ask: 1) How do I create a ...
0
votes
1answer
68 views

File system optimizations (ext3)

I have a PHP application that for every request loads 1 ini file, and at least 10 PHP files. As these same files are loaded for every single request I thought about mounting them on a ram disk but I ...
0
votes
1answer
94 views

bleeding-edge libraries and precompiled headers sizes

Q1: My GCC precompiled header takes up 150 mb -- yes I'm using obscure TMP libraries from Boost. Anyone have any tips of benefiting from a PCH this large ? any makefile snippets which I could use to ...
0
votes
1answer
152 views

Performance senario RAM Disk and In memory database(IMDB)?

I was just wondering, we have in memory database(IMDB) and we also have a way to put the database in a RAM Disk. So which would be faster? You valuable comments and experiences
0
votes
4answers
1k views

running visual studio and sites inside VMware inside RAM Disk

i am seeking advise on this one. i have a machine with 24 GB so i was planning to install Vista 64bit and nothing on it but Vmware workstation 6.5 Vista Image, that ill be installed on a RAM Disk i ...
0
votes
3answers
281 views

Shell Extension - Virtual File Creation

I want to create a file that only resides in memory... In looking through some documentation I saw a recommendation to use a shell extension as a virtual file. Im not sure that is a workable ...