14
votes
14answers
2k views
mmap() vs. reading blocks
I'm working on a program that will be processing files that could potentially be 100GB or more in size. The files contain sets of variable length records. I've got a first implementation up and …
2
votes
3answers
33 views
What are the most efficient idioms for streaming data from disk with constant space usage?
Problem Description
I need to stream large files from disk. Assume the files are larger than will fit in memory. Furthermore, suppose that I'm doing some calculation on the data and the result is …
0
votes
1answer
66 views
why does the memory mappped region grow down in Linux
Consider this
because this region maps the files like dynamically loaded libraries, i feel it should ideally grow up. this can be implemented by starting the mmap region between RLIMIT_STACK and heap …
0
votes
2answers
95 views
memory mapped files system call - linux
When we map a file to memory, a system call is required. Do subsequent accesses to the file require system calls or is the virtual memory page of the process mapped to the actual page cache in memory?
…
3
votes
3answers
300 views
malloc vs mmap in C
Hi,
I built two programs, one using malloc and other one using mmap. The execution time using mmap is much less than using malloc.
I know for example that when you're using mmap you avoid …
0
votes
5answers
82 views
File projection into memory using mmap
Hi,
I'm trying to project a file into memory to operate with it. The file contais structs so I'm trying to use a pointer to the start of one struct and then read it and modify some variable.
The …
5
votes
7answers
364 views
Why doesn’t Python’s mmap work with large files?
I am writing a module that amongst other things allows bitwise read access to files. The files can potentially be large (hundreds of GB) so I wrote a simple class that lets me treat the file like a …
3
votes
4answers
121 views
Python File Slurp w/ endian conversion
It was recently asked how to do a file slurp in python:
link text
And it was recommended to use something like
with open('x.txt') as x: f = x.read()
How would I go about doing this to read the …
1
vote
6answers
398 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 …
6
votes
12answers
634 views
What is the fastest way to read 10 GB file from the disk?
We need to read and count different types of messages/run
some statistics on a 10 GB text file, e.g a FIX engine
log. We use Linux, 32-bit, 4 CPUs, Intel, coding in Perl but
the language doesn't …
1
vote
1answer
160 views
mmap and access to GPIO config registers in an ARM processor
Im struggling to read(and write) to HW registers from Linux user space. The goal is to configure some GPIO pins from and be able to set and read this pins.
According to the spec for the …
0
votes
2answers
185 views
Linux mmap() error
I have a memory mapped file, from which I wish to parse the contents of the buffer. The mmap() returns success, and I can print out the buffer contents to a file using fprintf successfully. However, …
0
votes
2answers
103 views
wx.TextCtrl.LoadFile()
I am trying to display search result data quickly. I have all absolute file paths for files on my network drive(s) in a single, ~50MB text file. The python script makes a single pass over every line …
2
votes
3answers
2k views
How to share APC cache between several PHP processes when running under FastCGI?
I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it's shared already? …
2
votes
1answer
146 views
mmap(2) vs mmap(3)
Does anyone know what the difference between mmap(2) and mmap(3) is? Man section 3 is described as "This chapter describes all library functions excluding the library functions described in chapter …
