- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for createBulkLine (0.05 sec)
-
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
SuggestItem.Kind.DOCUMENT); item.setTimestamp(ZonedDateTime.now()); String bulkLine = SuggestUtil.createBulkLine("test_index", "_doc", item); assertNotNull(bulkLine); assertTrue(bulkLine.contains("test_index")); assertTrue(bulkLine.contains("_doc")); assertTrue(bulkLine.contains("test text"));
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
* @return a string representing the bulk line for OpenSearch indexing * @throws SuggesterException if an I/O error occurs during the creation of the bulk line */ public static String createBulkLine(final String index, final String type, final SuggestItem item) { if (item == null || item.getId() == null || item.getText() == null) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0)