Can I store and join based on external attributes in Lucene/Solr

Posted by Kibbee on Stack Overflow See other posts from Stack Overflow or by Kibbee
Published on 2010-06-12T17:47:14Z Indexed on 2010/06/12 17:53 UTC
Read the original article Hit count: 218

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about indexing

Related posts about lucene