Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getQueryTrackTotalHits (0.68 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        String getQueryTrackTotalHits();
    
        default Object getQueryTrackTotalHitsValue() {
            Object value = propMap.get(QUERY_TRACK_TOTAL_HITS_VALUE);
            if (value == null) {
                final String v = getQueryTrackTotalHits();
                if (Constants.TRUE.equalsIgnoreCase(v)) {
                    value = Boolean.TRUE;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * comment: Maximum number of total hits to track in queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryTrackTotalHits();
    
        /**
         * Get the value for the key 'query.track.total.hits' as {@link Integer}. <br>
         * The value is, e.g. 10000 <br>
         * comment: Maximum number of total hits to track in queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top