Hi, I'm writing a custom IndexWriter and I had some questions on the execution workflow.
I notice that when I run my index writer plugin the following happens: - the describe String is printed - the .open method is called once - the .write method is called for very NutchDocument - the .close method is called - the .open method is called - the .commit method is called - the .close method is called again This in most cases seems fine, however I'm not totally clear on what the .update or the .delete methods would be used. What is the "expected" use for these? As a possibly related question, is it possible to change the workflow of the plugin (without editing Nutch source beyond the plugin)? Thanks, Alex

