What would be the impact of re-indexing the same value across multiple fields in a lucene index?
The idea is that someone's first name is a part of their name and their general details. So I would want to index that value into multiple fields. Ted Bloggs I might index as follows:
Field | Value
-------------|---------
firstName | Ted
lastName | Blogs
name | Ted
name | Bloggs
general | Ted
general | Bloggs
all | Ted
all | Bloggs
By doing this I can easily form categories of fields however I'm worried it may have adverse performance and/or disk usage impacts.
Could anyone advise please