- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for seq_no (0.07 sec)
-
src/test/java/org/codelibs/fess/query/QueryTestBase.java
@Override public String getIndexFieldRole() { return "role"; } @Override public String getIndexFieldSeqNo() { return "seq_no"; } @Override public String getIndexFieldVersion() { return "version"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
@Override public String getIndexFieldRole() { return "role"; } @Override public String getIndexFieldSeqNo() { return "seq_no"; } @Override public String getIndexFieldVersion() { return "version"; } }; ComponentUtil.setFessConfig(fessConfig);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.field.doc_id=doc_id # Field name for internal ID in the index. index.field.id=_id # Field name for version in the index. index.field.version=_version # Field name for sequence number in the index. index.field.seq_no=_seq_no # Field name for primary term in the index. index.field.primary_term=_primary_term # Field name for language in the index. index.field.lang=lang # Field name for cache status in the index.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. _version */ String INDEX_FIELD_VERSION = "index.field.version"; /** The key of the configuration. e.g. _seq_no */ String INDEX_FIELD_seq_no = "index.field.seq_no"; /** The key of the configuration. e.g. _primary_term */ String INDEX_FIELD_primary_term = "index.field.primary_term"; /** The key of the configuration. e.g. lang */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
} public Long version() { return version; } public DocMeta seqNo(Long seqNo) { this.seqNo = seqNo; return this; } public Long seqNo() { return seqNo; } public DocMeta primaryTerm(Long primaryTerm) { this.primaryTerm = primaryTerm; return this;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 21 04:02:44 UTC 2025 - 26.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java
final Long seqNo = (Long) entity.remove(fessConfig.getIndexFieldSeqNo()); final Long primaryTerm = (Long) entity.remove(fessConfig.getIndexFieldPrimaryTerm()); if (seqNo != null && primaryTerm != null && oldId != null) { searchEngineClient.delete(index, oldId, seqNo, primaryTerm); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/EditForm.java
public class EditForm extends CreateForm { /** Unique identifier for the search list entry */ public String id; /** Sequence number for ordering search list entries */ @ValidateTypeFailure public Long seqNo; /** Primary term value for search list configuration */ @ValidateTypeFailure public Long primaryTerm; /** * Default constructor for EditForm. */ public EditForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0)