Is there a capablity, as in Oracle, to create a reverse index in mysql? The reverse index could take the key column and read it in reverse to create the index.
I don't believe it does. Though I've always felt there were better ways of dealing with hot blocks and reverse indexes just trade one set of problems for another, including the possibility of hot blocks.
No, a reverse index actually reverses the characters in a key, so "eric" is indexed as "cire". It's a band-aid for when you have too many keys that start with the same set of characters and you end up creating "hot blocks" or, more aptly, an unbalanced b-tree (which I know is an oxymoron, but no one would have understood if I said "an unb-tree" or a "u-tree" )
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.