Interface ICacheMgmt


@Path("/system/cache") public interface ICacheMgmt
  • Method Summary

    Modifier and Type
    Method
    Description
    Serializes the content of all caches { "cache1": { key0: value, key1: value, }, "cacheN": { keyX: valueY } }
    void
    Flushes all internal caches
  • Method Details

    • flushCaches

      @POST @Path("_flush") void flushCaches() throws ServerFault
      Flushes all internal caches
      Throws:
      ServerFault
    • dumpContent

      @GET @Path("_dump") @Produces("application/json") Stream dumpContent()
      Serializes the content of all caches { "cache1": { key0: value, key1: value, }, "cacheN": { keyX: valueY } }
      Returns: