cache = $cache; return $this; } /** * 设置表 * @param string $type * @return $this */ public function type(string $type) { $this->type = $type; return $this; } /** * 获取表实例 * @return SwooleTable */ public function getTable() { return app()->make(Table::class)->get('user'); } /** * 添加fd * @param string $key fd * @param int $uid 用户uid * @param int $to_uid 当前聊天人的uid * @param int $tourist 是否为游客 * @return mixed */ public function add(string $key, int $uid, int $to_uid = 0, int $tourist = 0) { $nowkey = $this->tableFdPrefix . $key; $data = ['fd' => $key, 'type' => $this->type ?: 'user', 'uid' => $uid, 'to_uid' => $to_uid, 'tourist' => $tourist]; $res = $this->getTable()->set($nowkey, $data); return $res; } /** * 修改数据 * @param string $key * @param null $field * @param null $value * @return bool|mixed */ public function update(string $key, $field = null, $value = null) { $nowkey = $this->tableFdPrefix . $key; $res = true; if (is_array($field)) { $res = $this->getTable()->set($nowkey, $field); } else if (!is_array($field) && $value !== null) { $data = $this->getTable()->get($nowkey); if (!$data) { return false; } $data[$field] = $value; $res = $this->getTable()->set($nowkey, $data); } return $res; } /** * 重置 * @return $this */ public function reset() { $this->type = $this->typeReset; return $this; } /** * 删除 * @param string $key * @return mixed */ public function del(string $key) { $nowkey = $this->tableFdPrefix . $key; return $this->getTable()->del($nowkey); } /** * 是否存在 * @param string $key * @return mixed */ public function exist(string $key) { return $this->getTable()->exist($this->tableFdPrefix . $key); } /** * 获取fd的所有信息 * @param string $key * @return array|bool|mixed */ public function get(string $key, string $field = null) { return $this->getTable()->get($this->tableFdPrefix . $key, $field); } /** * fd 获取 uid * @param $key * @return mixed */ public function fdByUid($key) { return $this->getTable()->get($this->tableFdPrefix . $key, 'uid'); } }