the-algorithm/follow-recommendations-service/common/src/main/scala/com/twitter/follow_recommendations/common/candidate_sources/base/CachedCandidateSource.scala
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

27 lines
989 B
Scala

package com.twitter.follow_recommendations.common.candidate_sources.base
import com.twitter.escherbird.util.stitchcache.StitchCache
import com.twitter.finagle.stats.StatsReceiver
import com.twitter.product_mixer.core.functional_component.candidate_source.CandidateSource
import com.twitter.product_mixer.core.model.common.identifier.CandidateSourceIdentifier
import com.twitter.stitch.Stitch
import com.twitter.util.Duration
class CachedCandidateSource[K <: Object, V <: Object](
candidateSource: CandidateSource[K, V],
maxCacheSize: Int,
cacheTTL: Duration,
statsReceiver: StatsReceiver,
override val identifier: CandidateSourceIdentifier)
extends CandidateSource[K, V] {
private val cache = StitchCache[K, Seq[V]](
maxCacheSize = maxCacheSize,
ttl = cacheTTL,
statsReceiver = statsReceiver.scope(identifier.name, "cache"),
underlyingCall = (k: K) => candidateSource(k)
)
override def apply(target: K): Stitch[Seq[V]] = cache.readThrough(target)
}