Re: Is it possible to add multiple keywords to a single field from one doc?

2008-05-25 Thread Daniel Noll
On Monday 26 May 2008 02:25:40 Tom Conlon wrote: > Hi Mark, > > For example: > you have a content field (default) and you also have an 'attributes' > field. > > I'd like to add multiple attributes for a given document rather than > just one value and be able to somehow search on the attributes. > >

Re: Is it possible to add multiple keywords to a single field from one doc?

2008-05-25 Thread Mark Miller
Okay, this is easy then. As long as you are using an analyzer that breaks up terms when it encounters a space, you just add all of the attributes as a single Field entry to the document (attribute field="big large black bulky"), with each attribute separated by a space. This will result in a hi

RE: Is it possible to add multiple keywords to a single field from one doc?

2008-05-25 Thread Tom Conlon
Hi Mark, For example: you have a content field (default) and you also have an 'attributes' field. I'd like to add multiple attributes for a given document rather than just one value and be able to somehow search on the attributes. Ie. Similar to a One-to-many DB relationship between document tab