We have large number of documents which are indexed(approx 1M), the size of the index is approx 1G. . We have few Keyword fields as well as few UnStored fields.
Now there is a requirement to change names of few fields. The application code can be easily changed to created the new document with new field names but existing documents have to be migrated to have new field names, so the query on new names can find them. What could be the easiest & fastest way to do this.
You cannot easily change the field names in the index.
You can either:
1. Rebuild your index with the new field names, or;
2. Keep the old field names in the index, and translate new field names in queries to the old field names. Users don't need to know what the field names are in the index.
Doug
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
