Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

You should find more reputable sources for this information. InnoDB has supported fulltext indexes since MySQL 5.6, released almost 9 years ago.

Here's the manual page from 5.6: https://dev.mysql.com/doc/refman/5.6/en/innodb-fulltext-inde...



sort by: page size:

I believe InnoDB does have this now in MySQL 5.6: http://dev.mysql.com/doc/refman/5.6/en/innodb-fulltext-index...

Looking now (no longer on my phone) it's a bit more complex than that: while MySQL has supported FULLTEXT indexes since 3.23.23 (2000-09-01) [1] if you wanted to use InnoDB (and you probably did -- it was much better than MyISAM [2]) you initially couldn't use FULLTEXT. That was added in v5.6 [3], and at the time I was developing this software the standard option was to set up Sphinx.

I've edited the post to add some of this history, so future readers understand this was about whether to add a dependency on an external indexing service.

[1] http://dev.cs.ovgu.de/db/mysql/News-3.23.x.html ("Full-text search via the MATCH() function and FULLTEXT index type (for MyISAM files). This makes FULLTEXT a reserved word.")

[2] https://stackoverflow.com/questions/7492771/should-i-use-myi...

[3] https://downloads.mysql.com/docs/mysql-5.6-relnotes-en.pdf ("MySQL now supports FULLTEXT indexes for InnoDB tables.")


For the record: MySQL has fulltext search already for MYISAM tables and will have fulltext for InnoDB in 5.6.

the mysql documentation definatly states otherwise: http://dev.mysql.com/doc/refman/5.7/en/innodb-create-index-o...

The problem with Mysql fulltext is that you are required to use the MyISAM table type.

If you are doing any writes to this table, you will eventually run into corruption problems. This is because of the way it works underneath. So, I only use it with static data or data that I rarely update.

I wish Innodb had fulltext search capabilities. I don't like the idea of adding yet another 3rd party server in the mix.


Or preferably, Sphinx support. From the announcement I can't see that you can't do it, but not that you can.

InnoDB and MyISAM are not good at full text search even on local disk, no reason to make that worse.

Somewhat kinda germane post from Percona: http://www.mysqlperformanceblog.com/2009/09/10/what-to-do-wi...


"Again, depending on the choice of the database-engine, MySQL can lack certain features, such as the full-text search."

Both of the two biggest engines (MyISAM, InnoDB) support full-text search. It was added to InnoDB in MySQL 5.6/Maria 10.


Innodb doesn't have fulltext search, it has "fulltext search*". Big difference.

>mysql has no full text indexing on innodb tables

it has this in recent versions, but it's shockingly bad at matching.


Technically mysql has "built-in fulltext search" as well, but the implementation leaves something to be desired.

MySQL, at least as far back as 2000, had indexes.

http://web.archive.org/web/20020610031610/http://www.mysql.c...


Wow, looks like I got that completely wrong w.r.t. innodb specifically. Wish I could still edit my first post. :( Thank you.

http://dev.mysql.com/doc/refman/5.0/en/innodb-consistent-rea...


Given all of the odd default behavior and caveats in InnoDB FTS[1], I'd sooner just continue to use an external search solution, like ElasticSearch.

1: http://www.mysqlperformanceblog.com/2013/03/04/innodb-full-t...


This posts neglects to mention a few key points about the FULLTEXT search....

1. You have to use MyISAM tables which dosen't support transactions like InnoDB tables do.

2. You need to make sure you adjust the FT MAX LENGTH parameter which I believe is 4 by default meaning you can search on 3 letter words like say "USB" for example


> Indexing on function expression

MySQL 5.7 fully supports this. See https://dev.mysql.com/doc/refman/5.7/en/create-table-generat... and https://dev.mysql.com/doc/refman/5.7/en/create-table-seconda...

> JSON column (actually MySQL 5.6 supports it but I doubt if it's as good as Postgres)

Actually MySQL 5.6 doesn't support this, but 5.7 does, quite well: https://dev.mysql.com/doc/refman/5.7/en/json.html


MySQL supports spatial indexes exactly for circumstances like this:

http://dev.mysql.com/doc/refman/5.0/en/spatial-extensions.ht...


Since MySQL 5.6, most schema changes (add/drop field) are possible online as well:

http://dev.mysql.com/doc/refman/5.6/en/innodb-create-index-o...


Your examples regarding MySQL's features are not correct.

Need to apply an index to the result of a function? No problem, use a functional index, supported since October 2018: https://dev.mysql.com/doc/refman/8.0/en/create-index.html#cr...

Need to use a window function? No problem, supported since April 2018: https://dev.mysql.com/doc/refman/8.0/en/window-functions.htm...


On the MySQL side, https://dev.mysql.com/doc/refman/8.0/en/innodb-compression-b....

It reads like row level compression + index compression? They claim indexes make up a fair chunk of the disk usage, so there may be advantages.

next

Legal | privacy