You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by va...@apache.org on 2018/01/24 19:55:41 UTC

lucene-solr:master: Add more javadocs to the UpdateLog class

Repository: lucene-solr
Updated Branches:
  refs/heads/master 19474d9df -> 78815c442


Add more javadocs to the UpdateLog class


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/78815c44
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/78815c44
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/78815c44

Branch: refs/heads/master
Commit: 78815c442b4a595842c3c5ffd33a8c02c78f9e30
Parents: 19474d9
Author: Varun Thacker <va...@apache.org>
Authored: Wed Jan 24 11:45:46 2018 -0800
Committer: Varun Thacker <va...@apache.org>
Committed: Wed Jan 24 11:45:46 2018 -0800

----------------------------------------------------------------------
 solr/core/src/java/org/apache/solr/update/UpdateLog.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/78815c44/solr/core/src/java/org/apache/solr/update/UpdateLog.java
----------------------------------------------------------------------
diff --git a/solr/core/src/java/org/apache/solr/update/UpdateLog.java b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
index fc02917..71670bc 100644
--- a/solr/core/src/java/org/apache/solr/update/UpdateLog.java
+++ b/solr/core/src/java/org/apache/solr/update/UpdateLog.java
@@ -80,9 +80,9 @@ import static org.apache.solr.update.processor.DistributedUpdateProcessor.Distri
 import static org.apache.solr.update.processor.DistributingUpdateProcessorFactory.DISTRIB_UPDATE_PARAM;
 
 
-/** 
- * This holds references to the transaction logs and pointers for the document IDs to their
- * exact positions in the transaction logs.
+/**
+ * This holds references to the transaction logs. It also keeps a map of unique key to location in log
+ * (along with the update's version). This map is only cleared on soft or hard commit
  *
  * @lucene.experimental
  */