Can I store and join based on external attributes in Lucene/Solr
- by Kibbee
Is there a way to store information about documents that are stored in Lucene such that I don't have to update the entire document to update certain attributes about the documents?
For instance, let's say I had a bunch of documents, and that I wanted to update a permissions list of who was allowed to see the documents on a daily, or more frequent, basis. Would it be possible to update all the permissions each day, without updating all the documents. I could do it by keeping a exactly which permissions were added and removed, but I would rather just be able to take the end list of permissions, and use that, rather than have to keep track of all the permission changes and post those entire documents to Lucene.