Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for clearCache (0.05 sec)

  1. SuggestHelper.java

    suggester.indexer().deleteBadWord(badWord); L395: refresh(); L396: } L397: L398: public synchronized void refresh() { L399: suggester.refresh(); L400: if (popularWordHelper != null) { L401: popularWordHelper.clearCache(); L402: } L403: } L404: L405: public void setSearchStoreInterval(final long searchStoreInterval) { L406: this.searchStoreInterval = searchStoreInterval; L407: } L408:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      18.1K bytes
  2. GenerateThumbnailJob.java

    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); L244: throw new JobProcessingException(out.toString()); L245: } L246: ComponentUtil.getPopularWordHelper().clearCache(); L247: } catch (final JobProcessingException e) { L248: throw e; L249: } catch (final Exception e) { L250: throw new JobProcessingException("ThumbnailGenerator Process terminated.", e); L251: } finally...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:20:39 UTC 2024
      10.6K bytes
  3. SuggestJob.java

    out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); L226: throw new JobProcessingException(out.toString()); L227: } L228: ComponentUtil.getPopularWordHelper().clearCache(); L229: } catch (final JobProcessingException e) { L230: throw e; L231: } catch (final Exception e) { L232: throw new JobProcessingException("SuggestCreator Process terminated.", e); L233: } finally {...
    github.com/codelibs/fess/src/main/java/org/code...
    Sun Jun 23 04:13:47 UTC 2024
      10K bytes
  4. WebFsIndexHelper.java

    urlFilterService.delete(sid); L489: } catch (final Exception e) { L490: logger.warn("Failed to delete UrlFilter for {}", sid, e); L491: } L492: L493: try { L494: // clear queue L495: urlQueueService.clearCache(); L496: urlQueueService.delete(sid); L497: } catch (final Exception e) { L498: logger.warn("Failed to delete UrlQueue for {}", sid, e); L499: } L500: L501: try { L502: // clear L503: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      22.6K bytes
Back to top