Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
1answer
312 views

Memory barriers and the TLB

Memory barriers guarantee that the data cache will be consistent. However, does it guarantee that the TLB will be consistent? I am seeing a problem where the JVM (java 7 update 1) sometimes crashes ...
18
votes
5answers
1k views

iOS: Memory-mapped files and low-memory scenarios

My apologies if this has been covered elsewhere on Stackoverflow or is not here because it's too trivial a question. :-) How does the iOS platform handle memory-mapped files during low-memory ...
16
votes
1answer
920 views

.NET 4.0 Memory Mapped Files Performance

I'd like to know if anyone tried new .NET 4.0 Memory Mapped Files features? I know that they are as old as OS but native handling in .NET is new. Has anyone been able to test this and say something ...
14
votes
8answers
888 views

How to scan through really huge files on disk?

Considering a really huge file(maybe more than 4GB) on disk,I want to scan through this file and calculate the times of a specific binary pattern occurs. My thought is: Use memory-mapped ...
11
votes
6answers
314 views

Do I need to make a type a POD to persist it with a memory-mapped file?

Pointers cannot be persisted directly to file, because they point to absolute addresses. To address this issue I wrote a relative_ptr template that holds an offset instead of an absolute address. ...
10
votes
5answers
283 views

“live C++ objects that live in memory mapped files”?

So I read this interview with John Carmack in Gamasutra, in which he talks about what he calls "live C++ objects that live in memory mapped files". Here are some quotes: JC: Yeah. And I actually ...
10
votes
5answers
475 views

Can multiple threads see writes on a direct mapped ByteBuffer in Java?

I'm working on something that uses ByteBuffers built from memory-mapped files (via FileChannel.map()) as well as in-memory direct ByteBuffers. I am trying to understand the concurrency and memory ...
8
votes
2answers
324 views

Memory mapped file std::allocator implementation freezes WM6 device

I have a Visual Studio 2008 C++ project for Windows Mobile 6.x where I need more memory than is available to me in the 32MB process slot. So, I'm looking at using memory mapped files. I've created a ...
7
votes
4answers
1k views

How to unmap a file from memory mapped using FileChannel in java?

I am mapping a file("sample.txt") to memory using FileChannel.map() and then closing the channel using fc.close(). After this when I write to the file using FileOutputStream, I am getting the ...
7
votes
3answers
722 views

Optimal storage of data structure for fast lookup and persistence

Scenario I have the following methods: public void AddItemSecurity(int itemId, int[] userIds) public int[] GetValidItemIds(int userId) Initially I'm thinking storage on the form: itemId -> ...
7
votes
3answers
2k views

Posix shared memory vs mapped files

Having learnt a bit about the subject, can anyone tell, what is the real difference between POSIX shared memory (shm_open) and POSIX mapped files (mmap)? Both seems to use the /dev/tmpfs subsystem, ...
7
votes
6answers
824 views

incomprehensible time consumed in using memory mapped file

I am writing a routine to compare two files using memory-mapped file. In case files are too big to be mapped at one go. I split the files and map them part by part. For example, to map a 1049MB file, ...
7
votes
4answers
2k views

Memory mapping of files vs CreateFile/ReadFile

What are the drawbacks (if any) of using memory mapped file to read (regular sized files) over doing the same using CreateFile ReadFile combination?
6
votes
2answers
127 views

Testing whether buffers have been flushed in R

I have some big, big files that I work with and I use several different I/O functions to access them. The most common one is the bigmemory package. When writing to the files, I've learned the hard ...
6
votes
3answers
2k views

When to use memory-mapped files?

I have an application that receives chunks of data over the network, and writes these to disk. Once all chunks have been received, they can be decoded/recombined into the single file they actually ...
5
votes
6answers
319 views

Python: handling a large set of data. Scipy or Rpy? And how?

In my python environment, the Rpy and Scipy packages are already installed. The problem I want to tackle is such: 1) A huge set of financial data are stored in a text file. Loading into Excel is ...
5
votes
3answers
505 views

How to dynamically expand a Memory Mapped File

I've used C# to solve the followering requirement.. - create an app the can recive a lot of data fast - you must be able to analyse the recieved data while more are incomming. - use as little cpu and ...
5
votes
4answers
456 views

Is there really no mremap in Darwin?

I'm trying to find out how to remap memory-mapped files on a Mac (when I want to expand the available space). I see our friends in the Linux world have mremap but I can find no such function in the ...
5
votes
7answers
3k views

Fast cross platform algorithm for reading/writing file in C++

I want to pose a seemingly simple question that i can't find the answer nowhere. Is there a FAST modern algorithm for file input and/or output that can be compiled with all standard compliant C++ ...
5
votes
1answer
2k views

Using C++ Boost memory mapped files to create disk-back data structures

I have been looking into using Boost.Interprocess to create a disk-backed data structure. The examples on Boost Documentation (http://www.boost.org/doc/libs/1_41_0/doc/html/interprocess.html) are all ...
5
votes
4answers
5k views

Memory Mapped Files .NET

I have a project and it needs to access a large amount of proprietary data in ASP.NET. This was done on the Linux/PHP by loading the data in shared memory. I was wondering if trying to use Memory ...
4
votes
3answers
268 views

Memory-mapped file IList implementation, for storing large datasets “in memory”?

I need to perform operations chronologically on huge time series implemented as IList. The data is ultimately stored into a database, but it would not make sense to submit tens of millions of queries ...
4
votes
2answers
590 views

boost::interprocess message_queue performance - rather slow?

I need an ultra-fast MQ mechanism, where both sender and receiver are written in C++, on Windows platform. My current implementation using RCF-C++ for IPC is clocking at around 20,000 msg/sec over ...
4
votes
1answer
231 views

Java MemoryMapping big files

The Java limitation of MappedByteBuffer to 2GIG make it tricky to use for mapping big files. The usual recommended approach is to use an array of MappedByteBuffer and index it through: long PAGE_SIZE ...
4
votes
3answers
177 views

Virtual file systems

Most games come with their resources (models, textures, etc.) packed into special files (like .pk3 files in Quake 3 for example). Apparently, those files somehow get "mounted" and are used as if they ...
4
votes
2answers
298 views

Memory mapped files: how to monitor memory usage

I work on a 32 bit end user application that needs a lot of memory. Up to several gigabytes. I recently switched our internal memory allocation strategy to use memory-mapped-files-without-files ...
4
votes
2answers
365 views

Java Memory-mapped files?

Please tell me is Memory-mapped files in Java are the same like Memory-mapped files for Windows? Or it is only emulation based on memory and file common operations in Java? Thank you for any advice!
4
votes
3answers
504 views

Memory-Mapped Files & Transparent Persistence of Java Objects

Greeting All, I want to achieve transparent persistence of Java objects through memory-mapped files (utilize the OS paging/swapping mechanism). My problem is: how can I move a Java object to my ...
4
votes
3answers
1k views

Traditional IO vs memory-mapped

I'm trying to illustrate the difference in performance between traditional IO and memory mapped files in java to students. I found an example somewhere on internet but not everything is clear to me, I ...
4
votes
1answer
148 views

Why is remap_file_pages() failing in this example?

The following C code illustrates a problem I'm seeing on Linux 2.6.30.5-43.fc11.x86_64: #include <sys/types.h> #include <sys/stat.h> #include <sys/mman.h> #include <fcntl.h> ...
4
votes
2answers
1k views

How to allocate and free aligned memory in C

How do you allocate memory that's aligned to a specific boundary in C (e.g., cache line boundary)? I'm looking for malloc/free like implementation that ideally would be as portable as possible --- at ...
4
votes
1answer
707 views

Can I get a path for a Memory Mapped File? (.NET 4.0)

I want that a non-.NET application access a Memory Mapped file, but this application is not aware of the existence of Memory Mapped files, so I need the file path. It is possible?
4
votes
6answers
2k views

How big can a memory-mapped file be?

What limits the size of a memory-mapped file? I know it can't be bigger than the largest continuous chunk of unallocated address space, and that there should be enough free disk space. But are there ...
3
votes
2answers
169 views

Memory-mapped files: pros and cons?

I need to share data between two Java applications running on the same machine (two different JVMs). I precise that the data to be shared is large (about 7 GB). The applications must access the data ...
3
votes
1answer
119 views

How can I quickly read bytes from a memory mapped file in .NET?

In some situations the MemoryMappedViewAccessor class just doesn't cut it for reading bytes efficiently; the best we get is the generic ReadArray<byte> which it the route for all structs and ...
3
votes
1answer
137 views

C# code very slow with debugger attached; MemoryMappedFile's fault?

I have a client/server app. The server component runs, uses WCF in a 'remoting' fashion (binary formatter, session objects). If I start the server component and launch the client, the first task the ...
3
votes
1answer
238 views

Boost iostream: how to turn ifstream into memory mapped file?

What I want is simple to open file for reading as memory mapped file - in order to access it with much more speed in future (example: we open file read it to end, wait and read it again and again) ...
3
votes
2answers
171 views

Data structure Memory Mapped or DB? (millions of items)

I have a data structure which is essentially a lookup for some calculations that take a really long time (100ms) to calculate and need to be used over and over. I have roughly 6,000,000 of these ...
3
votes
2answers
134 views

Would it make sense to use MemoryMappedFile to perform a search on large text files?

I'm tasked with implementing a search function that will search through several large (couple MB) log files and return the lines that contain the keywords. Log files are constantly being added to the ...
3
votes
1answer
1k views

MapViewOfFile shared between 32bit and 64bit processes

I'm trying to use MapViewOfFile in a 64 bit process on a file that is already mapped to memory of another 32 bit process. It fails and gives me an "access denied" error. Is this a known Windows ...
3
votes
2answers
587 views

In-memory version of Java's FileChannel

I'm in the process of making some changes to a library that I'm using. In order to reduce memory usage the library is writing its temporary data to disk instead of keeping it in memory. However, for ...
3
votes
5answers
876 views

Memory allocators

I want to make a virtual allocator using c++ on windows,, which allocate data on a file on the hard disk, to reduce physical memory usage when allocate large objects !.. I don't want to use system ...
3
votes
2answers
205 views

mmaping two consecutive pages

I'm writing a unit test for my UTF8 manipulation library, and I want my test to segfault if a function goes into a buffer overflow. So I came up with the idea to mmap two pages next to each other in ...
2
votes
2answers
69 views

Handling Memory mapped File in C# directly from the memory

Is it possible to open memory mapped file in C# directly just like opening files directly in windows, say for example, I'm creating memory mapped file. through following code. using System; using ...
2
votes
0answers
75 views

Is this Delphi 6 code for using a page file backed shared memory mapped file correct?

I have a Delphi 6 application and also a DLL that share a memory mapped file to transfer data between them. I know soft page faults are a normal side effect of memory mapped files, but I am getting a ...
2
votes
1answer
143 views

Why doesn't the array() method of MappedByteBuffer work?

I am very new to Java, and trying to use Mathematica's Java interface to access a file using memory mapping (in hope of a performance improvement). The Mathematica code I have is (I believe) ...
2
votes
4answers
103 views

Load text file to memory in Java

I have wiki.txt file and its size is 50 MB. I need to do several things on the file and so I thought that the best way in terms of performance is to load the file to memory, is that correct? This is ...
2
votes
1answer
277 views

Memory-mapped files: IOException on CreateViewAccessor for large data

I'm working with large, and growing files using the managed wrappers for memory-mapped files: MemoryMappedFile, MemoryMappedViewAccessor. I create empty files using this code: long length = 1024L * ...
2
votes
2answers
160 views

Change the encoding to UTF-8 on a stream (MemoryMappedViewStream)

I am using the code below to read a ~2.5Gb Xml file as fast as I can (thanks to MemoryMappedFile). However, I am getting the following exception: "'.', hexadecimal value 0x00, is an invalid character. ...
2
votes
2answers
108 views

Requesting direction for loading my file in chunks (Only needing advice)

I've been working for the last few days on a method to compress 144 million tile representation for my xna game down to a very small size when saved. Having managed to pull that off I now find myself ...

1 2 3 4