| #38 | return $r; |
| #39 | } |
| #40 | public function get($k) { |
| #41 | if(!$this->link && !$this->connect()) return FALSE; |
| #42 | $r = $this->link->get($this->pre.$k); |
| #43 | //echo $k.'-'.$r.'||||'; |
| #44 | return $r === FALSE ? NULL : xn_json_decode($r); |
| #45 | } |
| #46 | public function multi_get($keys) { |
| #47 | $data = array(); |