com.google.common.cache.LocalCache.recordsAccess()方法的使用及代码示例

x33g5p2x  于2022-01-24 转载在 其他  
字(6.2k)|赞(0)|评价(0)|浏览(84)

本文整理了Java中com.google.common.cache.LocalCache.recordsAccess()方法的一些代码示例,展示了LocalCache.recordsAccess()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。LocalCache.recordsAccess()方法的具体详情如下:
包路径:com.google.common.cache.LocalCache
类名称:LocalCache
方法名:recordsAccess

LocalCache.recordsAccess介绍

暂无

代码示例

代码示例来源:origin: google/guava

/**
 * Records the relative order in which this read was performed by adding {@code entry} to the
 * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
 * drained and the entries therein processed.
 *
 * <p>Note: locked reads should use {@link #recordLockedRead}.
 */
void recordRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 recencyQueue.add(entry);
}

代码示例来源:origin: google/guava

boolean recordsTime() {
 return recordsWrite() || recordsAccess();
}

代码示例来源:origin: google/guava

boolean usesAccessEntries() {
 return usesAccessQueue() || recordsAccess();
}

代码示例来源:origin: google/guava

/**
 * Updates the eviction metadata that {@code entry} was just read. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 *
 * <p>Note: this method should only be called under lock, as it directly manipulates the
 * eviction queues. Unlocked reads should use {@link #recordRead}.
 */
@GuardedBy("this")
void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 accessQueue.add(entry);
}

代码示例来源:origin: google/j2objc

boolean usesAccessEntries() {
 return usesAccessQueue() || recordsAccess();
}

代码示例来源:origin: google/j2objc

boolean recordsTime() {
 return recordsWrite() || recordsAccess();
}

代码示例来源:origin: wildfly/wildfly

/**
 * Records the relative order in which this read was performed by adding {@code entry} to the
 * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
 * drained and the entries therein processed.
 *
 * <p>Note: locked reads should use {@link #recordLockedRead}.
 */
void recordRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 recencyQueue.add(entry);
}

代码示例来源:origin: wildfly/wildfly

boolean recordsTime() {
 return recordsWrite() || recordsAccess();
}

代码示例来源:origin: wildfly/wildfly

boolean usesAccessEntries() {
 return usesAccessQueue() || recordsAccess();
}

代码示例来源:origin: wildfly/wildfly

/**
 * Updates the eviction metadata that {@code entry} was just read. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 *
 * <p>Note: this method should only be called under lock, as it directly manipulates the
 * eviction queues. Unlocked reads should use {@link #recordRead}.
 */
@GuardedBy("this")
void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 accessQueue.add(entry);
}

代码示例来源:origin: google/guava

/**
 * Updates eviction metadata that {@code entry} was just written. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 */
@GuardedBy("this")
void recordWrite(ReferenceEntry<K, V> entry, int weight, long now) {
 // we are already under lock, so drain the recency queue immediately
 drainRecencyQueue();
 totalWeight += weight;
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 if (map.recordsWrite()) {
  entry.setWriteTime(now);
 }
 accessQueue.add(entry);
 writeQueue.add(entry);
}

代码示例来源:origin: wildfly/wildfly

/**
 * Updates eviction metadata that {@code entry} was just written. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 */
@GuardedBy("this")
void recordWrite(ReferenceEntry<K, V> entry, int weight, long now) {
 // we are already under lock, so drain the recency queue immediately
 drainRecencyQueue();
 totalWeight += weight;
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 if (map.recordsWrite()) {
  entry.setWriteTime(now);
 }
 accessQueue.add(entry);
 writeQueue.add(entry);
}

代码示例来源:origin: com.diffplug.guava/guava-cache

/**
 * Records the relative order in which this read was performed by adding {@code entry} to the
 * recency queue. At write-time, or when the queue is full past the threshold, the queue will
 * be drained and the entries therein processed.
 *
 * <p>Note: locked reads should use {@link #recordLockedRead}.
 */
void recordRead(ReferenceEntry<K, V> entry, long now) {
  if (map.recordsAccess()) {
    entry.setAccessTime(now);
  }
  recencyQueue.add(entry);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/com.google.guava

/**
 * Records the relative order in which this read was performed by adding {@code entry} to the
 * recency queue. At write-time, or when the queue is full past the threshold, the queue will
 * be drained and the entries therein processed.
 *
 * <p>Note: locked reads should use {@link #recordLockedRead}.
 */
void recordRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 recencyQueue.add(entry);
}

代码示例来源:origin: org.sonatype.sisu/sisu-guava

/**
 * Updates the eviction metadata that {@code entry} was just read. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 *
 * <p>Note: this method should only be called under lock, as it directly manipulates the
 * eviction queues. Unlocked reads should use {@link #recordRead}.
 */
@GuardedBy("Segment.this")
void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 accessQueue.add(entry);
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

boolean recordsTime() {
 return recordsWrite() || recordsAccess();
}

代码示例来源:origin: com.diffplug.guava/guava-cache

/**
 * Updates the eviction metadata that {@code entry} was just read. This currently amounts to
 * adding {@code entry} to relevant eviction lists.
 *
 * <p>Note: this method should only be called under lock, as it directly manipulates the
 * eviction queues. Unlocked reads should use {@link #recordRead}.
 */
@GuardedBy("this")
void recordLockedRead(ReferenceEntry<K, V> entry, long now) {
  if (map.recordsAccess()) {
    entry.setAccessTime(now);
  }
  accessQueue.add(entry);
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-analytics

boolean usesAccessEntries() {
 return usesAccessQueue() || recordsAccess();
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

boolean usesAccessEntries() {
 return usesAccessQueue() || recordsAccess();
}

代码示例来源:origin: org.hudsonci.lib.guava/guava

/**
 * Records the relative order in which this read was performed by adding {@code entry} to the
 * recency queue. At write-time, or when the queue is full past the threshold, the queue will
 * be drained and the entries therein processed.
 *
 * <p>Note: locked reads should use {@link #recordLockedRead}.
 */
void recordRead(ReferenceEntry<K, V> entry, long now) {
 if (map.recordsAccess()) {
  entry.setAccessTime(now);
 }
 recencyQueue.add(entry);
}

相关文章

微信公众号

最新文章

更多