/
githubmirror
/
the-algorithm
Обзор
Документация
Войти
/
githubmirror
/
the-algorithm
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/java/com/twitter/search/earlybird/segment/SegmentDataProvider.java
14 строк
590 B
twitter-team
Twitter Recommendation Algorithm
01 апр 2023, 01:36
01 апр 2023, 01:36
ef4c5eb
Код
Авторство
О чём код?
package com.twitter.search.earlybird.segment; /** * SegmentDataProvider provides information about available segments for indexing. This interface * abstracts away the actual source of the segment data. It might be a MySQL database, a mock * object, or a directory of flat files. It also provides access to the segmentInfoMap itself, which * contains information about the indexing state of Segments. */ public interface SegmentDataProvider extends SegmentProvider { /** * Returns the set of segment data record readers. */ SegmentDataReaderSet getSegmentDataReaderSet(); }