|
@ -30,6 +30,8 @@ class EECleanController(CementBaseController): |
|
|
dict(help='Clean MemCache', action='store_true')), |
|
|
dict(help='Clean MemCache', action='store_true')), |
|
|
(['--opcache'], |
|
|
(['--opcache'], |
|
|
dict(help='Clean OpCache', action='store_true')) |
|
|
dict(help='Clean OpCache', action='store_true')) |
|
|
|
|
|
(['--pagespeed'], |
|
|
|
|
|
dict(help='Clean Pagespeed Cache', action='store_true')) |
|
|
] |
|
|
] |
|
|
usage = "ee clean [options]" |
|
|
usage = "ee clean [options]" |
|
|
|
|
|
|
|
@ -48,6 +50,8 @@ class EECleanController(CementBaseController): |
|
|
self.clean_memcache() |
|
|
self.clean_memcache() |
|
|
if self.app.pargs.opcache: |
|
|
if self.app.pargs.opcache: |
|
|
self.clean_opcache() |
|
|
self.clean_opcache() |
|
|
|
|
|
if self.app.pargs.pagespeed: |
|
|
|
|
|
self.clean_pagespeed() |
|
|
|
|
|
|
|
|
@expose(hide=True) |
|
|
@expose(hide=True) |
|
|
def clean_memcache(self): |
|
|
def clean_memcache(self): |
|
@ -82,6 +86,15 @@ class EECleanController(CementBaseController): |
|
|
Log.debug(self, "{0}".format(e)) |
|
|
Log.debug(self, "{0}".format(e)) |
|
|
Log.error(self, "Unable to clean OpCache") |
|
|
Log.error(self, "Unable to clean OpCache") |
|
|
|
|
|
|
|
|
|
|
|
@expose(hide=True) |
|
|
|
|
|
def clean_pagespeed(self): |
|
|
|
|
|
"""This function clears Pagespeed cache""" |
|
|
|
|
|
if(os.path.isdir("/var/ngx_pagespeed_cache")): |
|
|
|
|
|
Log.info(self, "Cleaning PageSpeed cache") |
|
|
|
|
|
EEShellExec.cmd_exec(self, "rm -rf /var/ngx_pagespeed_cache/*") |
|
|
|
|
|
else: |
|
|
|
|
|
Log.error(self, "Unable to clean Pagespeed cache") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def load(app): |
|
|
def load(app): |
|
|
# register the plugin class.. this only happens if the plugin is enabled |
|
|
# register the plugin class.. this only happens if the plugin is enabled |
|
|