Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getIndexAdminLongFields (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java

                }
    
                @Override
                public String getIndexAdminIntegerFields() {
                    return "";
                }
    
                @Override
                public String getIndexAdminLongFields() {
                    return "content_length,favorite_count,click_count";
                }
    
                @Override
                public String getIndexAdminFloatFields() {
                    return "boost";
                }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 34.4K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                    }).collect(Collectors.toList()));
        }
    
        String getIndexAdminLongFields();
    
        default Set<String> getIndexAdminLongFieldSet() {
            @SuppressWarnings("unchecked")
            Set<String> fieldSet = (Set<String>) propMap.get(INDEX_ADMIN_LONG_FIELD_SET);
            if (fieldSet == null) {
                fieldSet = split(getIndexAdminLongFields(), ",")
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Long-type fields for admin in the index.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexAdminLongFields();
    
        /**
         * Get the value for the key 'index.admin.float.fields'. <br>
         * The value is, e.g. boost <br>
         * comment: Float-type fields for admin in the index.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
Back to Top