Quote:
Originally Posted by kees
What you could do is to binary index your data. This causes it's only stored and not searchable, but it is accesable.
<?
$doc->addField(Zend_Search_Lucene_Field::UnIndexed('mul tiplefield',serialize($yourarray));
?>
Is an example 
|
Hmmm... doesn't sound nice! I want to do something equivalent to this Java example:
Code:
Document document = new Document();
document.add(new Field("contributor", "s3000xl", Field.Store.NO, Field.Index.TOKENIZED));
document.add(new Field("contributor", "kees", Field.Store.NO, Field.Index.TOKENIZED));
With this I can do a search for all documents with contributor "s3000xl".