Hi, I have a quick question. I ran a map reduce code to process text and get the output in the json format which is like: {key: [value1,value2....]}
All of the above are ids and not text anymore. There is offcourse a mapping from word:key space Now, I want to do the following lookup. Given a new document.. it will have words.. some new some old word. If its an old word then offcourse there will be a an existing mapping and then used that key to this word. After that, calculate some new values and then go back to earlier processed json output and modify the values with new values else add new key:[values pair] if it is a new word. Will lucene be able to help me here? Jamal