mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-03-18 21:24:52 +08:00
add OnPipeMessageEvent.php add ProcessManager.php add WorkerCache component fix route bug correct Exception to ZMException
10 lines
159 B
PHP
10 lines
159 B
PHP
<?php
|
|
|
|
use ZM\Exception\ZMException;
|
|
use ZM\Store\LightCache;
|
|
|
|
LightCache::getMemoryUsage();
|
|
try {
|
|
LightCache::getExpire('1');
|
|
} catch (ZMException $e) {
|
|
} |