Index Component API

cancel
Showing results for 
Search instead for 
Did you mean: 

Index Component API

resplin
Intermediate
0 0 911

Obsolete Pages{{Obsolete}}

The official documentation is at: http://docs.alfresco.com



Search IndexingJava API


Index Manager


We do not need to expose indexing behaviour in general, this will be handled along with persistence.
It is possible we may want to rebuild an index after altering the way some attributes etc are indexed.

public void rebuildIndex(StoreRef[] storeRef)

public void rebuildAllIndexes()

public void optimizeIndex(StoreRef[] storeRef)

public void optimizeAllIndexes()




Index Transaction


Can be used to build indexes in a transaction as we go, or at the end.
It will track all the changes and may have to persist them.
The index changes will be cached using an in memory indexes and then merged into the appropriate indexes.

Note that we can get changes to nodes in many workspaces inside one transaction.

public void createIndex(NodeRef ref)
public void updateIndex(NodeRef ref)
public void deleteIndex(NodeRef ref)

public void createChild(RelationshipRef ref)
public void updateChild(RelationshipRef before, Relationship after)
public void deleteChild(RelationshipRef ref)

Transaction stuff: implements javax.transaction

On the commit we can get all the locks required and can then only fail on IO.
We only merge and delete at the commit point


Issues


  • Where would we specify index behaviour (merge docs etc) and when to optimize the index.
  • Keep index statistics and be able to report back impact of doing operations.

Search