I wrote some code to save user search conditions, and I use persistent service, but I got a big problem, because the persistent data cannot been deleted:
unset($this->persistent->conditions);
$conditions = $this->persistent->conditions;
var_dump($conditions);die();
Conditions output again, also not work using: $this->persistent->remove('conditions') Why did this happen?