Working with attributes

Text attributes of documents are changed without the need to re-index documents in the search network.

To change document attributes, use the changeAttributes method of the Indexer class.

The asynchronous operation flag is available as an option. You can track the completion of the operation by subscribing to the AttributeChangesCompleted event.

The following code example demonstrates changing document attributes on the search network.

System.out.println("Adding attribute: " + attribute);

Indexer indexer = node.getIndexer();

AttributeChangeBatch batch = new AttributeChangeBatch();
batch.add(documentKey, attribute);
ChangeAttributesOptions options = new ChangeAttributesOptions();
indexer.changeAttributes(batch, options);

To get all the attributes of a document, use the getAttributes method of the Indexer class. You must pass the document key as a parameter.

The following code example demonstrates retrieving document attributes from the search network.

Searcher searcher = node.getSearcher();
Indexer indexer = node.getIndexer();

int[] shardIndices = node.getShardIndices();
System.out.println();
for (int i = 0; i < shardIndices.length; i++) {
    int shardIndex = shardIndices[i];
    NetworkDocumentInfo[] infos = searcher.getIndexedDocuments(shardIndex);
    for (NetworkDocumentInfo info : infos) {
        int nodeIndex = node.getNodeIndex(info.getShardIndex());
        System.out.println(nodeIndex + ": " + info.getShardIndex() + ": " +
                hasErrors(info) + ": " + info.getDocumentInfo().getFilePath());
        String[] attributes = indexer.getAttributes(info.getDocumentInfo().getFilePath());
        for (String attribute1 : attributes) {
            System.out.println("\t\t" + attribute1);
        }
    }
}

More information about working with text attributes of documents in the article Document attributes.

More resources

GitHub examples

You may easily run the code from documentation articles and see the features in action in our GitHub examples:

Free online document search App

Along with full featured .NET library we provide simple, but powerful free Apps.

You are welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free online Free Online Document Search App.