in reply to Pure Perl Modules, XS Modules, what's the current trends?
I hope people can understand the importance of having a fall back, pure perl implementation of some of these modules. I do understand that in many instances, these modules are much much slower, but it is better than nothin'.
The problem is you can't easily have a pure Perl implementation in every case. In particular, a module which implements a binding to some C library, would have to re-implement the entire functionality of that library in Perl... (think of Net::SSH::Perl as a (more or less failed) attempt along these lines). Similarly, if you need to make system calls into the OS.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Pure Perl Modules, XS Modules, what's the current trends?
by chromatic (Archbishop) on Dec 20, 2007 at 22:34 UTC | |
by almut (Canon) on Dec 20, 2007 at 22:54 UTC | |
by chromatic (Archbishop) on Dec 20, 2007 at 23:08 UTC | |
by HeatSeekerCannibal (Beadle) on Dec 21, 2007 at 17:35 UTC | |
by chromatic (Archbishop) on Dec 21, 2007 at 19:09 UTC | |
|
Re^2: Pure Perl Modules, XS Modules, what's the current trends?
by skazat (Chaplain) on Dec 20, 2007 at 21:26 UTC |