Question are,
1.How can I improve the performance of SELECT queries in mysql utilizing REGEXP?
The table looks like
create table `tweets`(
`id` bigint auto_increment,
`tweet` varchar(140),
`time` datetime,
primary key(`id`)
);
Here the following query takes about 0.35 seconds.
select tweet from tweets where tweet regexp '^[abcdef]{1,4}$';
- Will indexing
tweetmake it faster? If so, what type of index should I use? - My table engine is
InnoDB, Is there any other table engine that will become beneficial?