LaCollision Posted July 17, 2018 Posted July 17, 2018 Hi, As far as I know, the search field in the \Helpers\Table\Db only uses the classic MySQL search. For instance, with the quickSearch property: $_where = array(); foreach ( $columns as $c ) { $_where[] = "LOWER(`{$c}`) LIKE CONCAT( '%', ?, '%' )"; } $where[] = array_merge( array( '(' . implode( ' OR ', $_where ) . ')' ), array_fill( 0, count( $_where ), mb_strtolower( trim( \IPS\Request::i()->quicksearch ) ) ) ); Would it be possible to implement ElasticSearch if it has been configured in the settings? Thanks a lot!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.