Subject: | Add to index allows multiple |
It'd be nice to set be able to add multiple fields/values for an item in
the index, instead of:
$node_idx->add_entry( $ShaggyNode, 'pet' => 'ScoobyDoo' );
it'd be good to support(pardon me as I rip off of your example:
$node_idx->add_entry( $ShaggyNode, {'pet' => 'ScoobyDoo',
'species' => 'Dog',
'genotype' => 'ScSc',
'episodes_featured' => 2343
}
);
as well as supporting the old style (for backwards compatability with
existing scripts, although it wouldn't be too difficult to change).