예제 #1
0
파일: Cache.php 프로젝트: roblight/wgh-api
 public static function init()
 {
     if (!self::$collection) {
         self::$client = new \MongoClient();
         self::$db = self::$client->{self::dbName};
         self::$collection = self::$db->{self::collectionName};
     }
 }