Search Results

5
votes
8answers
598 views

Linux/perl mmap performance

I'm trying to optimize handling of large datasets using mmap. A dataset is in the gigabyte range. The idea was to mmap the whole file into memory, allowing multiple processes to work on the dataset …
6
votes

Linux/perl mmap performance

Ok, found the problem. As suspected, neither linux or perl were to blame. To open and access the file I do something like this: #!/usr/bin/perl # Create 1 GB file if you do not have …
0
votes

Linux/perl mmap performance

Ok, here's another update. Using Sys::Mmap or PerlIO's ":mmap" attribute both works fine in perl, but only up to 2 GB files (the magic 32 bit limit). Once the file is more than 2 GB, the following …
2
votes

How can I extract abbreviations from a file using Perl?

Untested: my %abbr; open (my $input, "<", "filename") || die "open: $!"; for ( < $input > ) { while (s/([A-Z][A-Z]+)//) { $abbr{$1}++; } } Modified …
2
votes

Why do the ‘<’ and ‘lt’ operators return different results in Perl?

Rationale? It's a string operator. From "perldoc perlop": Binary "lt" returns true if the left argument is stringwise less than the right argument. If that's n …
0
votes

How can I extract the values after = in my string with Perl?

Assuming your ordering was a typo: #!/usr/bin/perl use strict; use warnings; my $str='a=1 b=2 c=abc'; my @v; while ($str =~ /=(\S+)/g) { push @v, $1; } print join (',', @v); …
0
votes

What’s the difference between ignoring a signal and telling it to do nothing in Perl?

Not sure why it is not working as you expect, but normally when I try to accomplish similar things I also trap the TERM signal in addition to the INT signal. …