APR:: classes in mod_perl 2.0. in trying to get comfortable with the code I started with something easy, apr_table_compress .
[ sail => 'spinnaker',
sail => 'jib',
sail => 'blooper' ]
$table->compress(APR::OVERLAP_TABLES_SET) the table will be flattened into
[ sail => 'blooper' ]
$table->compress(APR::OVERLAP_TABLES_MERGE) will produce
[ sail => 'spinnaker, jib, blooper' ]
compressing tables 0 Comments More | Login | Reply /