Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for _seq_no (0.05 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

                        return "id";
                    case FessConfig.INDEX_FIELD_VERSION:
                        return "_version";
                    case FessConfig.INDEX_FIELD_seq_no:
                        return "_seq_no";
                    case FessConfig.INDEX_FIELD_primary_term:
                        return "_primary_term";
                    case FessConfig.INDEX_FIELD_LANG:
                        return "lang";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            }
    
            @Override
            public String getIndexFieldVersion() {
                return "_version";
            }
    
            @Override
            public String getIndexFieldSeqNo() {
                return "_seq_no";
            }
    
            @Override
            public String getIndexFieldPrimaryTerm() {
                return "_primary_term";
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/user/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: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java

            if (indexOption != null) {
                indexOption.callback(builder);
            }
            final Long seqNo = esEntity.asDocMeta().seqNo();
            if (seqNo != null && seqNo.longValue() != SequenceNumbers.UNASSIGNED_SEQ_NO) {
                esEntity.asDocMeta().seqNo(seqNo);
            }
            final Long primaryTerm = esEntity.asDocMeta().primaryTerm();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/opensearch/log/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: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top