Marius Kjeldahl

302
Reputation
62 views

Registered User

name Marius Kjeldahl
member for 6 months
seen 1 hour ago
website
location
age
Jul
28
answered What’s the difference between ignoring a signal and telling it to do nothing in Perl?
Jul
11
awarded  Commentator
Jul
11
comment Missing OpenGL drivers on Android emulator
Yes, but from what I've seen on the web the fact that it doesn't find it shouldn't necessarily stop your program from running, assuming it can find the software implementation and resolve the missing functions to that library instead. I agree, it really shouldn't be looking if not necessary, but maybe that is just the way they implemented it? I.e. keep trying libs until symbol is resolved?
Jul
11
answered Missing OpenGL drivers on Android emulator
Jul
11
answered C++ development for Linux on Windows
Jul
10
answered How can I extract the values after = in my string with Perl?
Jul
10
answered Why do the ‘<’ and ‘lt’ operators return different results in Perl?
Jul
9
answered How can i change an application icon programmatically in Android?
Jul
8
answered GET vs. POST does it really really matter?
Jul
8
comment How can I extract abbreviations from a file using Perl?
You're probably right, but the editor didn't allow it without the spaces. I suspect the "lt dollar" sequence got cut out without the spaces.
Jul
8
revised How can I extract abbreviations from a file using Perl?
added 73 characters in body
Jul
8
answered How can I extract abbreviations from a file using Perl?
Jul
8
answered Want to create a script that takes backup of entire database and downloads it
Jul
8
answered C# string reference type?
Jul
6
answered Run a script over multiple files in unix
Jul
4
accepted Multi platform mobile application
Jul
3
answered Multi platform mobile application
Jul
1
accepted Linux/perl mmap performance
Jun
30
comment Linux/perl mmap performance
Here's a suggestion for a new very useful feature, based on my observation of perl described in this thread (memory mapped files only working up to 2 GB); if the user maps a file larger than 2 GB, use a segmented approach with a "custom" read function that automatically unmaps/maps as necessary. At least until the 2 GB perl "bug" is fixed..
Jun
29
awarded  Scholar
Jun
29
comment Linux/perl mmap performance
Did some benchmarking, confirming that dynamically map/unmapping using a segment size of 2 GB, and assuming that segment switches are fairly infrequent, speed is some 30-40% faster using mmap with unmap/mapping than straight file IO on a 3 GB file. On a 2 GB file the differences are less, but I suspect this is due to my laptop caching most of the file during the random accesses anyway. So at least I have a solution that works, although not as cleanly as I would have hoped. No need for further optimization at this stage though.
Jun
29
comment Linux/perl mmap performance
Thanks, that's certainly a workaround. It would necessitate keeping track of the pointer into the file and map/unmapping when necessary, which probably affects performance. But it's probably still faster than straight file IO.
Jun
29
comment Linux/perl mmap performance
What I am trying to do is random access by design from multiple processes, making sure only the parts of the file most often accessed remains in memory.at all times. What pattern would you suggest if random access from multiple processes and a huge file is required?
Jun
29
comment Linux/perl mmap performance
As I've posted in my other answer, even on 64 bit systems, there's still problems for larger files (>2GB). Your answer is correct though. I'm already 64 bit on all my machines, even the laptop, so it's not an issue for me.
Jun
29
comment Linux/perl mmap performance
Make that problem solved up to 2GB. For larger files perl still has problems, see my other answer related to this.
Jun
29
awarded  Self-Learner
Jun
29
answered Linux/perl mmap performance
Jun
27
awarded  Supporter
Jun
27
answered Learning More About Parsing
Jun
27
awarded  Teacher
Jun
27
comment Linux/perl mmap performance
Agree, the PerlIO mmap layer is probably preferrable as it would also allow the same code to run with/without mmap'ing by simply adding/removing the mmap attribute. Regardless, I found the problem, posted the code, problem solved.
Jun
27
answered Linux/perl mmap performance
Jun
27
comment Linux/perl mmap performance
I've looked at the perl OS interface, and it calls the C version more or less directly, but unless I figure it out I will probably test a C version as well. As for OS/perl version, I've tested on two system, both x86_64. One is Ubuntu 8.04.2 (linux 2.6.24-22, perl 5.8.8) and the other Ubuntu 9.04 (linux 2.6.28-13, perl 5.10.0). Same behaviour. The second system was a laptop, and I can definitively confirm that there is serious disk io involved when mmap is called from my tests.
Jun
27
awarded  Editor
Jun
27
revised Linux/perl mmap performance
edited body
Jun
27
awarded  Student
Jun
27
asked Linux/perl mmap performance