Tagged Questions
Version 5.12 of the Perl programming language.
14
votes
7answers
525 views
Is there anything exciting in perl 5.11 (to become perl 5.12)?
Perl 5.11 is now released! Is there anything really exciting in this release, or is it mostly maintenance patches? (From what I've read so far, it appears to be a rollup of improvements we have ...
11
votes
3answers
201 views
How can I create a qr// in Perl 5.12 from C?
This has been working for me in 5.8 and 5.10, but in 5.12 my code creates this weird non-qr object:
# running "print Dumper($regex)"
$VAR1 = bless( do{\(my $o = '')}, 'Regexp' );
Whereas printing a ...
5
votes
5answers
444 views
What are the most interesting/useful new things in Perl 5.12?
I remember quickly adopting given .. when, say, //, and the smart matching operator when Perl 5.10 came around.
What do you consider the most useful fixes and features introduced with Perl 5.12.0?
4
votes
3answers
278 views
How can I get a working Data::Alias in Perl 5.12?
I like Data::Alias. It seems to be broken in 5.12. Can it be fixed? Will it be fixed soon? Is there any nice alternative?
2
votes
4answers
180 views
perl cgi threads
I am having bit of a problem with my cgi web application, I use ithreads to do some parallel processing, where all the thread have a common 'goal'. Thus I detach all of them, and once I find my ...
0
votes
1answer
398 views
Strawberry Perl 5.12 as PostgreSQL 9.0's plperl on win32?
Has anyone had luck with this combination?
So far I've gotten the message:
ERROR: could not load library "C:/Program Files/PostgreSQL/9.0/lib/plperl.dll":
The specified module could not be found.
...