This commit is contained in:
Darshan Panchal 2023-07-17 21:38:38 -05:00 committed by GitHub
commit 66412465d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ import com.twitter.search.earlybird.search.queries.SinceUntilFilter;
public abstract class AbstractInMemoryTimeMapper implements TimeMapper {
// Reverse map: timestamp to first doc ID seen with that timestamp.
// This is two arrays: the timestamps (sorted), and the doc ids.
// These are two arrays: the timestamps (sorted), and the doc ids.
protected final IntBlockPool reverseMapTimes;
protected final IntBlockPool reverseMapIds;
protected volatile int reverseMapLastIndex;