Example #1
0
File: Set.php Project: mheydt/scalr
 protected function init()
 {
     if (!$this->initialized) {
         if (!$this->zookeeper->exists($this->path)) {
             $this->zookeeper->setOrCreate($this->path, "", false);
         }
         $this->initialized = true;
     }
 }
Example #2
0
 function set($key, $value)
 {
     $this->init();
     return $this->zookeeper->setOrCreate($this->formatKey($key), "{$value}");
 }