ibessonov commented on code in PR #5005:
URL: https://github.com/apache/ignite-3/pull/5005#discussion_r1907028708


##########
modules/raft/src/main/java/org/apache/ignite/raft/jraft/storage/impl/LogManagerImpl.java:
##########
@@ -821,9 +824,10 @@ public long getTerm(final long index) {
             if (index > this.lastLogIndex || index < this.firstLogIndex) {
                 return 0;
             }
-            final LogEntry entry = getEntryFromMemory(index);

Review Comment:
   I believe this should be a separate discussion, I'm not ready to make such 
changes right now. Should I create a new Jira for investigation of cache misses 
in `logsInMemory`?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to