memory-mapped-files
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:[详细]
2023-02-25 05:48 分类:问答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 the[详细]
2023-02-20 03:38 分类:问答Inter-process communication using MemoryMappedFiles or Named Pipes in VC++ and C# in Windows 7
I\'m trying to communicate between a VC++ DLL and a C# application. I\'ve read tons of resources and material, I tried to do it with both MemoryMapped files and Pipes, but unfortunately I couldn\'t ge[详细]
2023-02-19 08:21 分类:问答Why would changing the filesystem type from XFS to JFS increase mmap file write performance?
I have been playing around with different filesystems and comparing the performance of the vari开发者_如何学Cous filesystems when using mmap.[详细]
2023-02-19 03:17 分类:问答Strange behaviour of memory mapped file, some observations and some questions
Please look at this code below. #include <windows.h> void Write(char *pBuffer) { //pBuffer -= 4*sizeof(int);[详细]
2023-02-19 01:22 分类:问答Memory-Mapped File is Faster on Huge Sequential Read? Why?
I used the code below to measure the performance difference between reading large, sequential reads of a memory-mapped file, as compared to just calling ReadFile:[详细]
2023-02-15 19:01 分类:问答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 inspir[详细]
2023-02-15 04:04 分类:问答Thread notification when boost::interprocess::mapped_region is changed
How can I be n开发者_如何学运维otified when the bytes in boost::interprocess::mapped_region is changed by using interprocess_condition.[详细]
2023-02-13 11:24 分类:问答Identifying memory-mapped files
I\'m identifying parts of process\'s virtual memory using VirtualQuery. I identify regions taken by mapped files (MEM_MAPPED), but how to determine actual files (filenames) of files allocated there? I[详细]
2023-02-11 22:31 分类:问答Simple, fast and reliable database (NoSQL) [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-02-08 05:20 分类:问答