It will be nice to split keywords search in order to have a more powerful search engine but it seems complicated to accomplish this nicely ? ```php protected function getTaskIdsWithGivenDescription() { if($this->config->get('description_search') == 1) { return $this->db ->table(TaskModel::TABLE) ##FOREACH $this->value :-/ ->ilike(TaskModel::TABLE . '.description', '%' . $this->value . '%') ##END FOREACH ->findAllByColumn(TaskModel::TABLE . '.id'); } return array(); } ```
It will be nice to split keywords search in order to have a more powerful search engine but it seems complicated to accomplish this nicely ?