- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for addBoostValue (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
if (docBoostMatcher.match(map)) { documentBoost = docBoostMatcher.getValue(map); break; } } if (documentBoost > 0) { addBoostValue(map, documentBoost); } if (!map.containsKey(fessConfig.getIndexFieldDocId())) { map.put(fessConfig.getIndexFieldDocId(), systemHelper.generateDocId(map)); }
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/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
indexUpdater.updateDocument(doc); assertEquals("existing_id", doc.get("doc_id")); } // Test addBoostValue @Test public void test_addBoostValue() { final Map<String, Object> doc = new HashMap<>(); indexUpdater.addBoostValue(doc, 3.5f); assertEquals(3.5f, doc.get("boost")); } // Test addClickCountField with URL @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 33.6K bytes - Click Count (0)