ALF-9860: RSOLR 034: Incremental Index Fix

- generic fix, supprot to request purge, index and reindex for tx, node, acl-tx and acl (partly to make broken indexes)
- expose index fix via JMX
- migrate logging in the SOLR project to slf4j to fit the SOLR logging pattern (config to come)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29904 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Andrew Hind
2011-08-19 10:10:46 +00:00
parent d093b6a8e4
commit 4427a22e03
8 changed files with 108 additions and 34 deletions

View File

@@ -30,13 +30,13 @@ public class AclReaders
{
private Long aclId;
private Set<String> readers;
private long aclChangeSetId;
@Override
public String toString()
{
return "AclReaders [aclId=" + aclId + ", readers=" + readers + "]";
return "AclReaders [aclId=" + aclId + ", readers=" + readers + ", aclChangeSetId=" + aclChangeSetId + "]";
}
public Long getAclId()
{
return aclId;
@@ -53,4 +53,13 @@ public class AclReaders
{
this.readers = aclReaders;
}
public long getAclChangeSetId()
{
return aclChangeSetId;
}
public void setAclChangeSetId(long aclChangeSetId)
{
this.aclChangeSetId = aclChangeSetId;
}
}