- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for suggestJob (0.17 sec)
-
src/main/java/org/codelibs/fess/job/SuggestJob.java
* handling classpath setup, system properties, and process monitoring. */ public class SuggestJob extends ExecJob { private static final Logger logger = LogManager.getLogger(SuggestJob.class); /** * Constructs a new suggest job. */ public SuggestJob() { // do nothing } @Override public String execute() {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
README.md
// Initialize with your OpenSearch client String suggestId = "my-suggest-index"; Suggester suggester = Suggester.builder().build(client, suggestId); ``` #### 2. Add Suggestion Documents ```java import org.codelibs.fess.suggest.entity.SuggestItem; // Create suggestion item with text, readings, and metadata String[][] readings = new String[2][]; readings[0] = new String[]{"kensaku", "engine"}; readings[1] = new String[]{"search", "injin"};
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Aug 31 03:31:14 UTC 2025 - 12.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* <li>{@link #getAllWordsNum()}: Returns the total number of words in the suggestion index.</li> * <li>{@link #getDocumentWordsNum()}: Returns the number of document words in the suggestion index.</li> * <li>{@link #getQueryWordsNum()}: Returns the number of query words in the suggestion index.</li> * </ul> * * <p>Protected Methods: * <ul>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 21.6K bytes - Viewed (3) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
* <li>Adding tags, roles, fields, kinds, and languages to the request.</li> * <li>Configuring suggestion details, reading converter, normalizer, prefix match weight, match word first, and skip duplicate words options.</li> * <li>Building the query and filter query for the suggestion request.</li> * <li>Processing the request and handling the response or failure.</li>
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
* When enabled, suggestions are generated from indexed documents. */ @Size(max = 10) public String suggestDocuments; /** * Number of days to keep suggestion search logs before purging. * Set to 0 to disable purging of suggestion search logs. */ @Min(0) @Max(100000) @ValidateTypeFailure public Integer purgeSuggestSearchLogDay; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/advance.jsp
<script type="text/javascript" src="${fe:url('/js/popper.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> <script type="text/javascript" src="${fe:url('/js/advance.js')}"></script> </body>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 13 05:54:52 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/advance.jsp
<script type="text/javascript" src="${fe:url('/js/popper.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/bootstrap.min.js')}"></script> <script type="text/javascript" src="${fe:url('/js/suggestor.js')}"></script> <script type="text/javascript" src="${fe:url('/js/advance.js')}"></script> </body>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 14.1K bytes - Viewed (0) -
MIGRATION.md
Fess Site Search provides extensive customization options via the [FSS Generator](https://fss-generator.codelibs.org/docs/manual): - Result layout and styling - Facet configuration - Search box placement - Suggestion behavior **Example Result**:  **Additional Resources**:
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 12:40:11 UTC 2025 - 23.2K bytes - Viewed (0)