Jenner\SimpleFork\Cache\SharedMemory::remove PHP Метод

remove() публичный Метод

you should know that it maybe does not work.
public remove ( ) : boolean
Результат boolean
    public function remove()
    {
        //dallocate shared memory
        if (!shm_remove($this->shm)) {
            return false;
        }
        $this->dettach();
        // shm_remove maybe not working. it likes a php bug.
        unset($this->shm);
        return true;
    }