A file whose contents are mapped in virtual memory.
-1
votes
0answers
45 views
.net Memory Mapped File
two processes shall exchange data over mmf. When I start debugging main process, that starts other process, from vs, everything works fine. But, when I start the main process outside of vs, it seems ...
0
votes
2answers
61 views
Reading huge ascii text file quickly in Java. Need help using MappedByteBuffer
I have a text file with thousands of lines of data like the following:
38.48,88.25
48.20,98.11
100.24,181.39
83.01,97.33
... and the list keeps going (thousands of lines just like that).
I figured ...
0
votes
0answers
58 views
C++: Reading a struct with a vector from a mapped file
I am currently loading huge amounts of data in memory to quickly access it. Until now I put everything into RAM. But now that my data gets just too huge, I can not do this anymore.
I am therefore ...
8
votes
3answers
135 views
How to parallel-process data in memory mapped file
As name of memory mapped file indicates, I understand that a part of a large file can be mapped to memory using class MemoryMappedFile in C# for fast data process. What I would like to do with the ...
0
votes
0answers
51 views
Memory Mapping large files
I have a large file where I would like to parallelize the reading of the file. There is a concept of memory map where chunks of file get mapped to consecutive memory locations. The file contains ...
1
vote
1answer
61 views
“The specified Type must be a struct containing no references” using TeaFiles.NET
I found this compelling library called TeaFiles.NET.
I am writing a very simple console app to test it.
Here's the code:
class Program
{
static void Main(string[] args)
{
...
0
votes
0answers
36 views
boost interprocess allocator map offset_ptr in different processes
Assume the following source code:
namespace bip = boost::inteprocess;
typedef bip::allocator<char, bip::managed_mapped_file::segment_manager> my_allocator;
auto m_file = new ...
1
vote
0answers
66 views
How to get file handle from view's base address
Suppose you either have some file's handle and you want to get all views (memory base addresses) in your process or you don't have the handle but you have the view and you want the handle. Any ideas ...
4
votes
1answer
112 views
Accessing >2,3,4GB Files in 32bit Process on 64bit (or 32bit) Windows
Disclaimer: I apologize for the verbosity of this question (I think it's an interesting problem, though!), yet I cannot figure out how to more concisely word it.
I have done hours of research as to ...
0
votes
0answers
36 views
What is the alignment of the memory pointer returned by the MapViewOfFile function?
Can any one supply solid information regarding the alignment of the pointer being returned by the Windows API MapViewOfFile() function under a 64 bit OS?
Thanks in advance! =)
2
votes
1answer
107 views
How can I ensure that a memory-mapped file keeps the memory pages accessible?
I am using Qt to map a file to a piece of memory pages
QFile::map (qint64 offset, qint64 size, MemoryMapFlags flags = NoOptions)
Essentially, this should be a mmap system function call. I wonder ...
1
vote
1answer
78 views
MemoryMappedFile CreateViewAccessor throws “Not enough storage is available to process this command.”
We're loading a 222MB file in a MemoryMappedFile for raw data access. This data is updated using the write method. After some calculations, the data should be reset to the original value of the file. ...
0
votes
2answers
125 views
When performing mmap, would C or Java have any significant performance differences?
I have a 50GB file that is a sorted csv file.
Would it in theory make any difference if I was performing lookups on this file using memory mapped access using C or java?
I'm guessing since the file ...
0
votes
0answers
72 views
boost::iostreams::mapped_file file path issue
I ran into an issue using the mapped_file iostreams library of boost.
boost documentation : mapped_file
After reading through all the documentation and examples I could read, I still can't get the ...
0
votes
0answers
112 views
Java Processing Large Data Files Efficiently
I need a way to process large binary data files efficiently, both in terms of memory and time.
I am working on a multi-threaded Java application that processes large binary data files comprised of ...
1
vote
2answers
125 views
providing random read access to a very large (50GB+) ASCII file
My task is to provide random read access to a very large (50GB+) ASCII text file (processing requests for nth line/nth word in nth line) in a form of C# console app.
After googling and reading for a ...
0
votes
0answers
23 views
is it safe to make one view to a memory mapped file in a 64bit process
i am developing a database system on memory mapped files, mostly for my own education.
i like simplicity, and would rather opt to use one mapped view of an entire file in a 64bit process than ...
0
votes
0answers
33 views
Tuning OS filesystem caching
I'm using Lucene Java to open memory-mapped files (index).
Is there any way to control the FS cache policy over for different operating systems?
In specific I would like be able to control:
Giving ...
2
votes
1answer
103 views
How to check if a memory mapped file is exist? [closed]
I need a way to check if some MMF (Memory mapped file) is exists or not before accessing it, in a managed way.
0
votes
0answers
50 views
How should a separate process update a shared memory-mapped file?
I have a number of threads that read (only) a large memory-mapped file. I want a separate process to periodically rebuild that file and drop it in place for the others to use -- with minimal ...
1
vote
1answer
153 views
Read memory mapped file or knowing its size to read it correctely
In this question,
Read all contents of memory mapped file or Memory Mapped View Accessor without knowing the size of it
there is a problem, the (int)stream.Length is not giving me the correct ...
0
votes
1answer
40 views
Working with Zipped folder from memory
I'm making an XNA game, which uses a lot (currently ~2800) of small resource files. It has become a problem to move them around from place to place unarchived, so I thought maybe I could just zip them ...
0
votes
0answers
31 views
how do I append to .npy file [duplicate]
how do I append data (in the same format) to the .npy file created by save command for a numpy array? The reason is my file will be too big for RAM, so I cannot create it in one step. I want to append ...
1
vote
1answer
75 views
Fire an event on another process without knowing the process start order
I need the fastest way to fire an event in other process, I know that I may use Mutex, but it is very hard to manage Mutexes when I don't know the order of starting the two processes, one of the ...
4
votes
4answers
368 views
Read all contents of memory mapped file or Memory Mapped View Accessor without knowing the size of it
I need something similar to ReadToEnd or ReadAllBytes to read all of the contents of the MemoryMappedFile using the MappedViewAccessor if I don't know the size of it, how can I do it?
I have searched ...
0
votes
4answers
60 views
Unreliable connection to MemoryMappedFile
I have two .NET 4.0 WinForms applications that (primarily) read geographic data from shared MemoryMappedFiles. The end user is free to launch one of the apps or the other or run both at the same time. ...
0
votes
0answers
27 views
what are the benefits of using smaller temporary views vs larger persistent views on memory mapped files
i am fiddling to make my own storage engine, it is mostly for my own education.
so far i have a very good working solution with memory mapped files, but something is bothering me and i dont want to ...
7
votes
1answer
270 views
Performance characteristics of memory mapped file
Background:
I have a Java application which does intensive IO on quite large
memory mapped files (> 500 MB). The program reads data, writes data,
and sometimes does both.
All read/write ...
-1
votes
1answer
40 views
Fastest way to decode a sequence of integers [closed]
Assume the following file format:
Integer1 Integer2 Integer3 Integer4 ...
These are binary integers written using DataInputStream. There are 22 billions of them written to a file with size about ...
0
votes
0answers
86 views
MemoryMappedFile was not found
Here is my problem :
I have an WPF application, which holds a List<MyObject>.
The application triggers an assembly injection into another WPF application.
Before the injection starts, I want to ...
1
vote
0answers
112 views
How do I read a text file a chunk at a time in C++? [closed]
I'm dealing with files too big to load into memory (>100gb). So I need to access about a million lines at a time, do work to those million, and move on to the next million. I'm working in Xubuntu ...
0
votes
1answer
117 views
Not able to write BLOB to Memory mapped file using nio
I want to write a memoery mapped file from a BLOB field. The field can have uncompressed, gzip or bzip2 compressed data. Right now I have used the follwing code to read the blob and write into the ...
0
votes
0answers
66 views
Memory-mapped image is that possible on iOS?
Today I woke up with something that I thought was a big idea or a totally stupid one. I need to write an iOS application that uses huge scrollable images about 5k pixel squares, due to memory limit is ...
1
vote
0answers
120 views
Data binding to memory map for real-time chart updating
I have a process that generates data points (I have multiple values stored in an class object for each point) that I would like to plot real-time as they are created. I have thought of using a ...
0
votes
0answers
108 views
File Mapping API in Windows Phone 8
I have problem with using memory mapped file in WP8. CreateFileMappingFromApp, MapViewOfFileFromApp should be supported by Windows Phone 8 and UnmapViewOfFile by Windows Store apps. But when I use WP8 ...
2
votes
3answers
200 views
Putting a mutex in a memory mapped file on windows in C/C++
Does Windows offer any kind of mutex that can be placed in a memory mapped file and used across multiple processes?
Ideally it must be completely self contained such that it can survive by itself in ...
1
vote
1answer
177 views
Memory Mapped File Access Denied
I'm attempting to refactor an old piece of code that was cobbled together in a hurry into something a little more elegant.
There are two pieces of the project, a windows service and a form ...
0
votes
1answer
136 views
Why isn't this memory-mapped file read correctly?
I have a feeling I'm doing something wrong, but I'm not sure what.
Here is my code:
long offset = 0x009694E3;
long length = 0x02;
byte[] bytes = new byte[length];
// ...
0
votes
1answer
80 views
How do I use CreateViewAccessor.Read and Write?
I am trying to write a type of hex editor (for editing a Playstation 1 ISO), but I'm not sure how to use CreateViewAccessor.Read and Write. Specifically, I don't know what to put for the second ...
0
votes
0answers
69 views
Large Memory mapping files (Windows32)
I would like to use MemoryMappingFiles in my Win32 application. They will be use like FIFO buffers for interproccess communication (one application write into this buffer and the second will read and ...
1
vote
1answer
80 views
Memory mapped files that are backed up by the System page file
I am having a piece of software that is using MMF that is backed up by the system page file. The application uses MMF in order to cache large images. Write and read operations are happening at a very ...
0
votes
1answer
110 views
Win 32 or boost memory map access
I was told about memory mapped files as a possible way to get fast file i/o to store a 2d game tile map. The game will have frequent updates to the data where I will know the row/col to update so I ...
0
votes
1answer
112 views
When changing the file length do I need to remap all associated MappedByteBuffers?
I've a small and simple storage system which is accessible through memory mapped files. As I need to address more than 2GB space I need a list of MappedByteBuffer with a fixed size like 2GB (I'm using ...
0
votes
1answer
117 views
Do I need FileDescriptor “sync” and MappedByteBuffer “force”?
When I want to make sure that the changes of a MappedByteBuffer should be synced back to disc do I need randomAcccessFile.getFD().sync() or mappedByteBuffer.force() or both? (In my simple tests none ...
2
votes
1answer
144 views
Read file bytes using MemoryMappedFile
How can I read file bytes using MemoryMappedFile and put it into byte[] array?
0
votes
2answers
81 views
java mapped FileChannel implementation
Reading a file in using a Mapped FileChannel seems to be lightning fast... But I was wondering how they are doing this?
Are they simply just reading in a large (~64kB) buffer and then letting me ...
1
vote
2answers
231 views
Managed memory mapped file
My problem is that I can not open the file. In another process or in the same process!
Code:
var path = @"c:\work\mmf.dat";
var map = "testmap123";
var fs = new FileStream(path, ...
2
votes
0answers
70 views
Is it possible to np.concatenate memory-mapped files?
I saved a couple of numpy arrays with np.save(), and put together they're quite huge.
Is it possible to load them all as memory-mapped files, and then concatenate and slice through all of them ...
1
vote
1answer
137 views
C# MemoryMappedFile, how to set rights to communicate betweend processes?
I use memorymappedfile and it works when I communicate between 2 processes.
However, I set up a windows service that runs with the LOCAL SYSTEM account and I would like to communicate with processes ...
0
votes
1answer
151 views
Fastest way to send large blobs of data from one program to another in Windows?
I need to send large blobs of data (~10MB) from one program to another in Windows 7. I would like a method that allows for at least a gigabyte per second total throughput with very low system load. ...
