Tagged Questions

3
votes
4answers
530 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?
0
votes
2answers
116 views

Memory mapped files optional write possible?

When using memory-mapped files it seems it is either read-only, or write-only. By this I mean you can't: have one open for writing, and later decide not to save it have open …
0
votes
1answer
24 views

.Net 4.0 Memory-Mapped Files verses RDMS Storage

I'm interested in people's thoughts comparing storing data in a traditional SQL based Database or utilising a Memory-Mapped File such as the one in the new .Net 4.0 runtime. The d …
1
vote
6answers
359 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 s …
1
vote
1answer
62 views

Memory mapping physical disks and volumes

In Windows it's possible to open devices and volumes via CreateFile(). I've used this successfully before to ReadFile() from devices, but now I want to switch to memory-mapping. In …
1
vote
2answers
89 views

memory mapped files reamain in physical memory

I have a process that uses a lot of memory mapped files. Problem is that those files are kept in physical memory, even when the machine is low on memory, and other processes requir …
0
votes
1answer
39 views

MemoryMappedFile.CreateFromFile always throws UnauthorizedAccessException

I realize .NET 4.0 is in Beta, but I'm hoping someone has a resolution for this. I'm trying to create a memory mapped file from a DLL: FileStream file = File.OpenRead("C:\mydll.dl …
0
votes
1answer
38 views

Monitoring Windows Memory Mapped Files

In Windows, how can I keep track of the file mapping objects created by CreateFileMapping()? Basically I want to know how many memory mapped files are in use and the information l …
0
votes
1answer
75 views

Returning a memory mapped InputStream from a content provider?

The the client side of a content provider consumer I can do something like this, to get a proper InputStream for reading the picture: InputStream is = getContentResolver().openInp …
0
votes
1answer
32 views

What is the most appropriate way to use .Net 4.0’s MemoryMappedViewAccessors?

When displaying a large, memory mapped file in a scrollable box, is it more appropriate to have the view represent the whole file, or only the region of the file currently being di …
3
votes
5answers
276 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 wa …
2
votes
1answer
140 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? …
1
vote
2answers
57 views

what is the suggested number of bytes each time for files too large to be memory mapped at one time?

I am opening files using memory map. The files are apparently too big (6GB on a 32-bit PC) to be mapped in one ago. So I am thinking of mapping part of it each time and adjusting t …
0
votes
3answers
342 views

windows CreateFilemapping

link textIn my project I have implemented the CreateFileMapping concept to share memory between two processes. I have a server process in which I store the memory address of my ses …
2
votes
2answers
172 views

What is the best way to display large files without using large amounts of memory?

Many hex editors, such as Hex Workshop, can even read large-sized files while keeping a relatively small memory footprint, but still manage to keep scrolling smooth. I'm looking fo …

1 2 next
15 30 50 per page