Rollback in lucene
- by Petrick Lim
Is there a rollback in lucene?
I'm saving & updating database repository & lucene repository simultaneously so that the lucene index & database are in sync..
ex.
CustomerRepository.add(customer);
SupplierRepository.add(supplier);
CustomerLuceneRepository.add(customer);
SupplierLuceneRepository.add(supplier); // If this here fails i cannot rollback the customer above
DataContext.SubmitChanges();