You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
traitPagingReadableStore[K, V] extendsReadableStore[K,Spool[V]]
// see: https://github.com/twitter/util/blob/master/util-core/src/main/scala/com/twitter/concurrent/Spool.scala//combinator:objectPagingReadableStore {
// C is some cursor typedeffrom[K,V,C](readable: ReadableStore[(K,C), (V,C)])(nextPage: C=>C):PagingReadableStore[K,V] // do the get, make an item for the Spool, on .tail, do the next call
}
This would be good for a store of Uid -> Followers on Twitter. Some have millions and we can't fit them into one response.
The text was updated successfully, but these errors were encountered:
Sounds great. I think this will fit in really well with Redis list and set stores.
Can perhaps be done on MySQL as well using query LIMIT and some deduction for the cursor values.
This would be good for a store of Uid -> Followers on Twitter. Some have millions and we can't fit them into one response.
The text was updated successfully, but these errors were encountered: