Improve shared caching and invalidation of member points

This commit is contained in:
Kijin Sung 2017-03-02 16:52:33 +09:00
parent 5b22b0399c
commit e370ba680f
3 changed files with 31 additions and 22 deletions

View file

@ -12,6 +12,16 @@ class point extends ModuleObject
*/
protected static $_config = null;
/**
* @brief Module configuration cache
*/
protected static $_module_config_cache = array();
/**
* @brief Member point cache
*/
protected static $_member_point_cache = array();
/**
* @brief Shortcut to getting module configuration
*/