User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:02:48Zhttp://stackoverflow.com/feeds/user/46235http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1776745/is-there-something-like-perls-win32filenotify-for-linux-or-os-x/1777527#17775271Answer by james2vegas for Is there something like Perl's Win32::FileNotify for Linux or OS X?james2vegas2009-11-22T01:56:33Z2009-11-22T01:56:33Z<p>For systems where <a href="http://en.wikipedia.org/wiki/File%5Falteration%5Fmonitor" rel="nofollow" title="famd">famd</a> can run (Irix, Linux, BSDs, most Unices) there is <a href="http://search.cpan.org/~jglick/SGI-FAM-1.002/lib/SGI/FAM.pm" rel="nofollow" title="SGI::FAM">SGI::FAM</a> and <a href="http://search.cpan.org/~garnacho/Sys-Gamin-0.1/lib/Sys/Gamin.pm" rel="nofollow" title="Sys::Gamin">Sys::Gamin</a>, both of which do not build straight out of CPAN or tarball, but do work well once you get them working.</p>
http://stackoverflow.com/questions/1752481/beautifulsoup-findall-in-perl/1753172#17531721Answer by james2vegas for BeautifulSoup.findAll() in perljames2vegas2009-11-18T02:04:04Z2009-11-18T02:04:04Z<p>XML::DOM has getElementsByTagName (so do XML::LibXML::DOM and XML::GDOME) which works like the DOM function of the same name.</p>
http://stackoverflow.com/questions/1704875/implementing-cross-thread-process-queues-in-perl/1705376#17053762Answer by james2vegas for Implementing cross-thread/process queues in Perljames2vegas2009-11-10T02:55:55Z2009-11-10T02:55:55Z<p>In PostgreSQL you could use the NOTIFY/LISTEN combination, would need only a wait on the PG connection socket after running LISTEN(s).</p>
http://stackoverflow.com/questions/72401/what-perl-module-would-you-be-lost-without/1391326#13913260Answer by james2vegas for What Perl module would you be lost without?james2vegas2009-09-07T23:46:11Z2009-09-07T23:46:11Z<ul>
<li>CGI::Application</li>
<li>DBI</li>
<li>AnyEvent (I'm definitely a POE skeptic)</li>
<li>Template Toolkit</li>
</ul>
http://stackoverflow.com/questions/177722/how-to-acquire-user-and-group-information-in-perl-on-windows/1315466#13154660Answer by james2vegas for How to acquire user and group information in Perl on Windows?james2vegas2009-08-22T08:11:21Z2009-08-22T08:11:21Z<p>Oddly enough, Interix's build of Perl that ships with Microsoft's Services for Unix does support getpw* and friends.</p>
http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/1291639#12916390Answer by james2vegas for Significant new inventions in computing since 1980james2vegas2009-08-18T03:28:16Z2009-08-18T03:28:16Z<p>Let's see, Connection Machines (Massive Parallelism) for one.</p>
<p>Anyway, this whole question seems like an egoboo for Alan Kay since he invented everything.</p>
http://stackoverflow.com/questions/1286605/problem-passing-cgi-parameters-to-a-pop-up-window/1291427#12914270Answer by james2vegas for Problem Passing CGI parameters to a Pop-up Window james2vegas2009-08-18T02:05:02Z2009-08-18T02:05:02Z<p>your pseudo code should be like this:</p>
<pre><code><script language='JavaScript'>
function newPopup(pattern){
var prefix_str = "displayKB.cgi?id=";
window.open(prefix_str.concat(pattern),
'', 'width=225,height=200,left=900');
}
</script>
foreach my $pattern(@patterns){
<a href='javascript:newPopup($pattern)'> LINK </a>
}
</code></pre>
http://stackoverflow.com/questions/1288996/is-there-a-database-access-library-for-c-and-or-c-with-a-similar-interface-to-p/1291142#12911424Answer by james2vegas for Is there a database access library for C and/or C++ with a similar interface to Perl's DBI?james2vegas2009-08-18T00:10:15Z2009-08-18T00:10:15Z<p>NVM, no odbc interface, but it is DBI like (seeing as DBI doesn't use odbc except in DBD::ODBC)</p>
<p>libdbi - <a href="http://libdbi.sourceforge.net/" rel="nofollow">http://libdbi.sourceforge.net/</a> </p>
<blockquote>
<p>libdbi implements a
database-independent abstraction layer
in C, similar to the DBI/DBD layer in
Perl. Writing one generic set of code,
programmers can leverage the power of
multiple databases and multiple
simultaneous database connections by
using this framework.</p>
<p>In order to utilize the libdbi
framework, you need to install drivers
for a particular type of database. The
drivers officially supported by libdbi
are split off into the libdbi-drivers
project. The current version of libdbi
(0.8.3) is supposed to work with any
0.8.x release of libdbi-drivers. Currently the following database
engines are supported:</p>
<pre><code>* Firebird/Interbase
* FreeTDS (provides access to MS SQL Server and Sybase)
* MySQL
* PostgreSQL
* SQLite/SQLite3
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1267762/does-dbixclass-have-transparent-caching/1268097#12680972Answer by james2vegas for Does DBIx::Class have transparent caching?james2vegas2009-08-12T19:04:45Z2009-08-12T19:04:45Z<p>Semi-transparently there is DBIx::Class::Cursor::Cached (from mst, like DBIC). You need to provide a Cache object to your connections or schema objects though. Seems very undocumented unfortunately. </p>
<p>The Cookbook does have an example for using Tie::Cache on DBIC, and there are also the (get|set|clear)_cache functions on DBIx::Class::ResultSet, but they are probably not exactly what you need.</p>
http://stackoverflow.com/questions/1259135/how-can-i-implement-a-restful-api-in-perl/1260764#12607642Answer by james2vegas for How can I implement a RESTful API in Perl?james2vegas2009-08-11T14:33:04Z2009-08-11T14:33:04Z<p>I would use something like CGI::Application::Dispatch, it lets me build a dispatch table with variables and REST methods, and lets you use CGI and CGI::Application modules from CPAN. E.g.:</p>
<pre><code>table => [
'/questions/:id[get]' => { rm => 'get_question' },
'/users/:id[get]' => { rm => 'get_user' }, # OR
':app/:id[post]' => { rm => 'update' }, # where :app is your cgi application module
':app/:id[delete]' => { rm => 'delete' },
],
</code></pre>
<p>(or you can use auto_rest or auto_rest_lc)</p>
<p>you can use a separate CGI::Application class for each type of thing (or just use classes in your cgi-app controller class methods).</p>
<p>CGI::Application also comes with plugins for outputting XML, JSON or text generated from templates.</p>
<p>cgi-app (and c::a::d) are are CGI applications and can be used with (little or) no change under CGI, FastCGI or mod_perl. C::A::D is also a mod_perl PerlHandler by default too.</p>
http://stackoverflow.com/questions/1226510/how-can-i-map-numbers-to-their-string-equivalents-in-perl/1232462#12324620Answer by james2vegas for How can I map numbers to their string equivalents in Perl?james2vegas2009-08-05T10:45:14Z2009-08-05T10:45:14Z<p>Create a lookup table in your RDBMS which maps 2 to Good and 6 to Bad. Create an INNER JOIN (or LEFT JOIN if you anticipate having values that will not match the lookup) with your SQL statement (or create a VIEW which returns the JOINed tables). Trying to use Perl or SQL SELECT statements to replace database design is probably a bad idea.</p>
http://stackoverflow.com/questions/603340/what-do-you-keep-in-your-perl-toolbox/1163299#11632990Answer by james2vegas for What do you keep in your Perl toolbox?james2vegas2009-07-22T06:01:02Z2009-07-22T06:09:28Z<ul>
<li>CGI::Application::Dispatch (thus CGI::Application too)</li>
<li>CGI::Fast</li>
<li>DBIx::Class</li>
<li>Template Toolkit</li>
<li>DBD::Pg</li>
<li>Coro</li>
<li>AnyEvent::*</li>
<li>Gtk2::*</li>
<li>Config::General</li>
<li>PDL</li>
<li>Devel::NYTProf</li>
<li>Moose (wish it was faster to start up)</li>
</ul>
<p>I develop web apps and desktop apps with these.</p>
<p>I notice a lot of plain CGI.pm fans on here, though I like CGI::Application, especially combined with C::A::D, a lot. It's still pretty light-weight, has a reasonable amount of plugins, a decent website and isn't as slow or heavy as Catalyst.</p>
http://stackoverflow.com/questions/1072918/automate-open-and-save-openoffice-impress-format-as-html-jpeg-using-c-reflection/1073437#10734371Answer by james2vegas for Automate open and save OpenOffice Impress format as html/jpeg using C# reflection, or perljames2vegas2009-07-02T09:35:51Z2009-07-02T09:35:51Z<p>Use <a href="http://search.cpan.org/~jmgdoc/OpenOffice-OODoc-2.108/OODoc.pod" rel="nofollow">OpenOffice::OODoc</a>, it understands the XML format of OpenOffice documents, requires no openoffice binaries to be running or even to have openoffice installed.</p>
http://stackoverflow.com/questions/1067061/does-a-varchar-fields-declared-size-have-any-impact-in-postgresql/1068338#10683383Answer by james2vegas for Does a varchar field's declared size have any impact in PostgreSQL?james2vegas2009-07-01T10:12:34Z2009-07-01T10:12:34Z<p>TEXT /is/ the same as VARCHAR without an explicit length, the text </p>
<blockquote>
<p>"The storage requirement for a short
string (up to 126 bytes) is 1 byte
plus the actual string, which includes
the space padding in the case of
character. Longer strings have 4 bytes
overhead instead of 1. Long strings
are compressed by the system
automatically, so the physical
requirement on disk might be less.
Very long values are also stored in
background tables so that they do not
interfere with rapid access to shorter
column values. In any case, the
longest possible character string that
can be stored is about 1 GB."</p>
</blockquote>
<p>refers to both VARCHAR and TEXT (since VARCHAR(n) is just a limited version of TEXT). Limiting your VARCHARS artificially has to real storage (the overhead is based on the actual length of the string, not the length of the underlying varchar) or performance benefit, except possibly for comparisons against wildcards and regexes (but at the level where that starts to matter, you should probably be looking at something like PostgreSQL's full-text indexing support).</p>
http://stackoverflow.com/questions/951325/web-devs-who-have-made-the-switch-from-mysql-what-postgresql-features-could-you/956042#9560420Answer by james2vegas for Web devs who have made the switch from MySQL, what postgresql features could you now not do without?james2vegas2009-06-05T14:06:27Z2009-06-05T14:06:27Z<ul>
<li>Stored Procedures / UDFs in Perl</li>
<li>Asynchronous Database Access in libpq</li>
<li>Schemas and databases, not databases pretending to be schemas</li>
<li>GIN and GIST</li>
</ul>
http://stackoverflow.com/questions/932441/help-with-algorithm-to-dynamically-update-text-display/932504#9325046Answer by james2vegas for Help with algorithm to dynamically update text display.james2vegas2009-05-31T17:30:05Z2009-05-31T17:30:05Z<p>Use Curses, or if you need to be doing it yourself, read about the VTnnn control codes. Both of these should work on windows and on *nix terms and consoles (and Windows). You can also consult the nethack source code for hints. This will let you change characters on the screen wherever changes have happened.</p>
http://stackoverflow.com/questions/896822/could-anyone-explain-if-g-in-perl/898490#8984900Answer by james2vegas for Could anyone explain if -G in perl?james2vegas2009-05-22T15:31:19Z2009-05-22T15:31:19Z<p>This is clearly confusion between [ (test) options and Perl -X file tests. -G is in the former (on my BSD system), but not the latter. -G is a non-posix extension and I guess Perl didn't include all the extensions, just some. So its either, he meant to say -g or he meant [ -G $file ]; (for some superset of POSIX [). It is also in my default shell (pdksh) and bash (the linux default shell, for the most part) </p>
<p>-G in test or as a shell builtin here:</p>
<p>-G file
True if file exists and its group matches the effective group ID
of this process.</p>
http://stackoverflow.com/questions/796934/why-opensource-database-like-postgresql-and-mysql-dont-have-encrypted-stored-pro/797740#7977405Answer by james2vegas for Why opensource database like Postgresql and Mysql don't have encrypted stored proc?james2vegas2009-04-28T12:50:46Z2009-04-28T12:50:46Z<p>While I'm sure encrypted stored procs are a simple matter of programming in PostgreSQL at least (MySQL and stored procs do not have a long history together), with PgSQL's custom languages support, I don't see why this would be useful. They would need to be decrypted at some point to execute them so anyone who administers the database/database server would be able to, with sufficient skill, be able to get the unencrypted sp. The DBA can already see all the data, all the relationships, seemingly making obfuscating the SP code pointless.</p>
http://stackoverflow.com/questions/710304/is-there-a-perl-module-to-monitor-an-email-queue/714300#7143000Answer by james2vegas for Is there a Perl module to monitor an email queue?james2vegas2009-04-03T14:58:30Z2009-04-03T14:58:30Z<p>The Perl Email Project @ <a href="http://emailproject.perl.org/mediawiki/index.php/Main_Page" rel="nofollow">http://emailproject.perl.org/mediawiki/index.php/Main_Page</a> has recommendations and other information on the mail oriented modules for perl.</p>
http://stackoverflow.com/questions/698977/what-are-some-ways-i-can-improve-the-performance-of-a-regular-expression-query-in/700153#7001530Answer by james2vegas for What are some ways I can improve the performance of a regular expression query in Postgresql 8?james2vegas2009-03-31T05:39:12Z2009-03-31T05:39:12Z<p>If you have a limited set of regexes to match against you could create a table with the primary key of your table and a field indicating if it matches that regex, which you would update on a trigger and then index your tables key in that table. This trades a small decrease in update and insert speed for a probably large speed increase in select.</p>
<p>Alternatively, you could write a function which compares your field to that regex (or even pass the regex along with the field you are matching to the function), then create a functional index on your table against that function. This also assumes a fixed set of regexes (but you can add new regex matches more easily this way).</p>
<p>If the regex is dynamically created from user input you might have to live with the table scan or change the user app to produce a more simple search like <em>field like 'value%'</em>, which would use an index on field (<em>'%value%'</em> wouldn't).</p>
http://stackoverflow.com/questions/695722/what-are-good-interactive-gui-builder-packages-for-perl/696001#6960016Answer by james2vegas for What are good interactive GUI builder packages for Perl?james2vegas2009-03-30T04:32:09Z2009-03-30T06:03:01Z<p>Echoing Chas Owens, glade is quite usable with Gtk2 in Perl. In addition, Gtk2 also supports GtkBuilder files (which you can create the the latest glade too).</p>
<p>The main problem with wxPerl (and wxWidgets itself) is that it doesn't let you install file event watchers into its main loop (it only has GUI, Socket and Timer events), unlike Tk and Gtk.</p>
<p>The Qt, Tk and Gtk2 event loops can be used in Perl with AnyEvent, and Gtk2 can be hooked into applications running the Event or Ev mainloop with Glib::Event and Glib::EV modules.</p>
http://stackoverflow.com/questions/53108/is-it-possible-to-make-a-recursive-sql-query/666124#6661240Answer by james2vegas for Is it possible to make a recursive SQL query ?james2vegas2009-03-20T13:25:38Z2009-03-20T13:25:38Z<p>Jacob Rigby: If you really needed a directed graph so bad, PgSQL does support the SQL XML/XPath extensions. Though, didn't Ted Codd win this debate in 1974?</p>
http://stackoverflow.com/questions/665023/what-makes-postgresql-more-advanced-than-mysql/666044#6660442Answer by james2vegas for What makes PostgreSQL more advanced than MySQL?james2vegas2009-03-20T13:04:18Z2009-03-20T13:04:18Z<p>bobince: RE: foreign key support,referential integrity, transactions, views, subselects: InnoDB may have them, but they are not as standards-compliant, or real world tested than PostgreSQL's (seeing as MySQL devs claimed for years that those features were unneeded). Also, InnoDB is not the default table type and you need to use the non-ACID table type for full text search, amongst other things.</p>
http://stackoverflow.com/questions/627918/am-i-safe-against-sql-injection/628142#6281426Answer by james2vegas for Am I safe against SQL injection james2vegas2009-03-09T21:43:14Z2009-03-09T23:02:23Z<p>In terms of your procedure you seem safe as the variable in the SP won't be expanded into code, but you can still expose yourself if you don't use a parameterized query like "<em><code>SELECT * FROM sp_list_name(?);</code></em>" in your <em>appplication code</em>. Something like "<em><code>SELECT * FROM sp_list_name('$start_name');</code></em>" could be subverted by a user passing a start name of "<strong><code>');delete from t_player where last_name NOT IN ('</code></strong>". So use a parameterized query or sanity check your inputs in your program.</p>
<p><strong>NB:</strong> To others, please note that a variable in a stored procedure will <strong>not</strong> expand into code even if it contains a ' or ;, (excluding passing it to <em>EXECUTE</em>, for which you would use <em><code>quote_literal</code></em>, not hand-rolled <em><code>replace</code></em> functions) so replacing ; or ' is totally unnecessary (in the stored procedure, the application using it is a different story, of course) and would prevent you from always finding the "<code>tl;dr</code>" or "<code>O'Grady</code>" teams.</p>
<p><strong>Leo Moore, Karl, LFSR Consulting</strong>: <code>v_temp_name</code> in the stored procedure will <em>NOT</em> be expanded into code in the SP (no <em>EXECUTE</em>), the check would need to be done n the application, not the SP (or the OP could just use a parameterized query in their app code, instead). What others are suggesting is similar to worrying about </p>
<pre><code>my $bar = "foo; unlink('/etc/password');";
my $baz = $bar;
</code></pre>
<p>actually running the unlink in the absence of an eval.</p>
http://stackoverflow.com/questions/620229/does-postgres-have-something-similar-to-oracles-virtual-private-databases/620851#6208511Answer by james2vegas for Does Postgres have something similar to Oracle's Virtual Private Databases?james2vegas2009-03-06T23:19:54Z2009-03-06T23:19:54Z<p>You could do something like it with views/rules of the data. Also, 8.4 has column level permissions iirc.</p>
http://stackoverflow.com/questions/571368/how-can-i-use-bash-syntax-in-perls-system/571733#571733-1Answer by james2vegas for How can I use bash syntax in Perl's system()?james2vegas2009-02-21T00:08:33Z2009-02-21T00:08:33Z<p>THe world outside of Linux that don't want to have to install bash to run Perl programms thanks you.</p>
http://stackoverflow.com/questions/561576/polymorphism-in-sql-database-tables/563260#5632601Answer by james2vegas for Polymorphism in SQL database tables?james2vegas2009-02-18T23:06:26Z2009-02-18T23:06:26Z<p>Since you tagged this PostgreSQL, you could look at <a href="http://www.postgresql.org/docs/8.1/static/ddl-inherit.html" rel="nofollow">http://www.postgresql.org/docs/8.1/static/ddl-inherit.html</a> but beware the caveats.</p>
http://stackoverflow.com/questions/199331/is-it-worth-learning-bash-when-i-know-perl/555143#5551431Answer by james2vegas for Is it worth learning BASH when I know Perl?james2vegas2009-02-17T00:24:26Z2009-02-17T00:24:26Z<p>don't learn 'bash', learn sh/ksh/pdksh, its the basis of bash and knowing the basics of it instead of all the bad practices (bashisms) learning bash would teach you, would let you use any unix/posix system with ksh or sh (or bash). Even Services for Unix from Microsoft comes with a korn shell.</p>
http://stackoverflow.com/questions/550831/how-do-you-create-a-perl-module/550857#550857-3Answer by james2vegas for How do you create a Perl module?james2vegas2009-02-15T13:20:30Z2009-02-15T13:20:30Z<p><a href="http://perldoc.perl.org/" rel="nofollow">http://perldoc.perl.org/</a></p>
http://stackoverflow.com/questions/513591/how-do-you-open-a-browser-to-a-url-using-activeperl-on-windows/538597#538597-1Answer by james2vegas for How do you open a browser to a URL using ActivePerl on Windows?james2vegas2009-02-11T20:23:11Z2009-02-11T20:23:11Z<p>on windows: start
on modern unixen (that is to say, those with xdg-utils installed):
xdg-open</p>
http://stackoverflow.com/questions/388201/how-can-i-prevent-gd-from-running-out-of-memory/1813484#1813484Comment by on How can I prevent GD from running out of memory?2009-11-29T13:52:37Z2009-11-29T13:52:37ZOr use Image::Magick?http://stackoverflow.com/questions/1800170/are-there-perl-gui-builders-especially-for-wxperl/1800511#1800511Comment by on Are there Perl GUI builders, especially for WxPerl?2009-11-26T06:28:20Z2009-11-26T06:28:20ZFor Gtk:
Glade @ <a href="http://glade.gnome.org/" rel="nofollow">glade.gnome.org</a>http://stackoverflow.com/questions/72401/what-perl-module-would-you-be-lost-without/72842#72842Comment by on What Perl module would you be lost without?2009-11-24T16:11:11Z2009-11-24T16:11:11Zs/POE/AnyEvent/ghttp://stackoverflow.com/questions/1714736/postgresql-rails-and-order-problem/1717152#1717152Comment by on PostgreSQL, Rails and :order => problem2009-11-12T19:30:46Z2009-11-12T19:30:46ZYou can, since it is. MySQL is a bit more permissive and non-standard in what it accepts.http://stackoverflow.com/questions/281803/is-there-an-object-centric-perl-ormComment by on Is there an object-centric Perl ORM?2009-08-18T21:51:24Z2009-08-18T21:51:24ZNot sure in what ways the relational mdoel is more limited than the object model. It may be less intuitive to a programmer used to object-oriented programming, but that doesn't really equate to limitation.http://stackoverflow.com/questions/281803/is-there-an-object-centric-perl-orm/282246#282246Comment by on Is there an object-centric Perl ORM?2009-08-18T20:35:42Z2009-08-18T20:35:42ZGemstone is not even an RDBMS, its some smalltalk-y 'Object Database', you know, like CODASYL or MUMPS, such things get pretty tied to specific applications instead of being general databases.http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/435670#435670Comment by on Significant new inventions in computing since 19802009-08-18T02:53:50Z2009-08-18T02:53:50Znot just smalltalk like, visual age which become eclipse, written in smalltalk.http://stackoverflow.com/questions/1259135/how-can-i-implement-a-restful-api-in-perl/1259352#1259352Comment by on How can I implement a RESTful API in Perl?2009-08-11T14:11:44Z2009-08-11T14:11:44ZIf you're using apache and mod_rewrite, why even include the .pl? Also you are losing the ID. You can rewrite the URL with mod_rewrite or just create a mod_perl handler and use it to handle /dir/whatever. CGI::Application::Dispatch is a mod_perl handler, and can do rest.http://stackoverflow.com/questions/1240796/how-can-i-reference-a-hash-with-a-variable-name/1240849#1240849Comment by on How can I reference a hash with a variable name?2009-08-08T02:03:23Z2009-08-08T02:03:23Zwhy is this such a common question? Where is this used|thought to be a good idea?http://stackoverflow.com/questions/1242040/how-can-i-join-two-hashes-in-perl-without-using-a-loop/1242062#1242062Comment by on How can I join two hashes in Perl without using a loop?2009-08-07T10:53:16Z2009-08-07T10:53:16ZIn which case they should look at Hash::Merge on the CPANhttp://stackoverflow.com/questions/1242040/how-can-i-join-two-hashes-in-perl-without-using-a-loop/1242062#1242062Comment by on How can I join two hashes in Perl without using a loop?2009-08-07T10:51:48Z2009-08-07T10:51:48Zthat might be the OP's problem, they might want to merge the values of the hash, so $a{'c'} ends up being [1, 'd']http://stackoverflow.com/questions/611111/how-can-i-enhance-the-look-of-the-perl-tk-gui-under-perl-5-004/611477#611477Comment by on How can I enhance the look of the Perl/TK GUI under Perl 5.004?2009-08-06T11:36:22Z2009-08-06T11:36:22ZNot sure how relevant whether it can be used with Python or not is?http://stackoverflow.com/questions/1220897/parse-xml-ilo-response-file-with-perlComment by on Parse XML iLO response file with Perl2009-08-03T08:54:12Z2009-08-03T08:54:12ZThis isn't valid XML, is this what it really returns? Don't use a strict parser if it is since that would be an issue.
from xmllint:
parser error : Premature end of data in tag GET_EMBEDDED_HEALTH_DATA line 2http://stackoverflow.com/questions/1192735/which-perl-session-management-library-works-well-with-templatetoolkit/1193045#1193045Comment by on Which Perl session management library works well with TemplateToolkit? 2009-07-28T10:47:04Z2009-07-28T10:47:04ZI don't see what you gain with Apache::Session over CGI::Session/CGI::Application::Plugin::Session, as the advantages you describe for Apache::Session are available for CGI::Session.http://stackoverflow.com/questions/1192735/which-perl-session-management-library-works-well-with-templatetoolkitComment by on Which Perl session management library works well with TemplateToolkit? 2009-07-28T10:39:17Z2009-07-28T10:39:17ZNot sure why you feel the pressure to move to Catalyst, there is nothing wrong with using CGI::Application moving forward. It is pretty close to the CGI way of doing things, with a nice set of plugins and modules to do 'modern' things. CGI::Application also has URL based dispatching with CGI::Application::Dispatch and integrates well with CGI::Session through CGI::Application::Plugin::Session (and TT through CGI::Application::Plugin::TT of course). The learning curve, memory use and startup time of Catalyst are all higher than for cgi-app.