- Sort Score
- Num 10 results
- Language All
Results 11 - 16 of 16 for getIndexFieldFavoriteCount (0.14 seconds)
-
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
} if (fessConfig.getIndexerFavoriteCountEnabledAsBoolean()) { addFavoriteCountField(dataMap, url, fessConfig.getIndexFieldFavoriteCount()); } final Set<String> matchedLabelSet = ComponentUtil.getLabelTypeHelper().getMatchedLabelValueSet(url); if (!matchedLabelSet.isEmpty()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
final String indexFieldTitle = fessConfig.getIndexFieldTitle(); final String indexFieldContent = fessConfig.getIndexFieldContent(); final String indexFieldFavoriteCount = fessConfig.getIndexFieldFavoriteCount(); final String indexFieldClickCount = fessConfig.getIndexFieldClickCount(); final String indexFieldBoost = fessConfig.getIndexFieldBoost();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
} // Test index field configurations @Test public void test_indexFieldFavoriteCount() { assertEquals("favorite_count", fessConfig.getIndexFieldFavoriteCount()); } @Test public void test_indexFieldClickCount() { assertEquals("click_count", fessConfig.getIndexFieldClickCount()); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
fessConfig.getIndexFieldAnchor(), fessConfig.getIndexFieldSegment(), fessConfig.getIndexFieldExpires(), fessConfig.getIndexFieldClickCount(), fessConfig.getIndexFieldFavoriteCount() }); if (document == null) { storeChildUrlsToQueue(urlQueue, getChildUrlSet(searchEngineClient, id)); return true; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 19.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
final SearchLogHelper searchLogHelper = ComponentUtil.getSearchLogHelper(); final long count = searchLogHelper.getFavoriteCount(url); map.put(fessConfig.getIndexFieldFavoriteCount(), count); if (logger.isDebugEnabled()) { logger.debug("Favorite count: count={}, url={}", count, url); } } } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* comment: Field name for favorite count in the index. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getIndexFieldFavoriteCount(); /** * Get the value for the key 'index.field.click_count'. <br> * The value is, e.g. click_count <br> * comment: Field name for click count in the index.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)