Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for seq_no (0.11 sec)

  1. 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 Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        }
    
        public boolean delete(final String index, final String id, final Number seqNo, final Number primaryTerm) {
            try {
                final DeleteRequestBuilder builder = client.prepareDelete().setIndex(index).setId(id).setRefreshPolicy(RefreshPolicy.IMMEDIATE);
                if (seqNo != null) {
                    builder.setIfSeqNo(seqNo.longValue());
                }
                if (primaryTerm != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
Back to top