Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
MySQL 5.1 Plugin Development

You're reading from  MySQL 5.1 Plugin Development

Product type Book
Published in Aug 2010
Publisher Packt
ISBN-13 9781849510608
Pages 288 pages
Edition 1st Edition
Languages

Table of Contents (16) Chapters

MySQL 5.1 Plugin Development
Credits
About the Authors
About the Reviewer
1. Preface
1. Compiling and Using MySQL Plugins 2. User Defined Functions 3. Daemon Plugins 4. Information Schema Plugins 5. Advanced Information Schema Plugins 6. Full-text Parser Plugins 7. Practical Full-text Parsers 8. Storage Engine Plugins 9. HTML Storage Engine—Reads and Writes 10. TOCAB Storage Engine — Implementing Indexes Beyond MySQL 5.1

An Image Metadata processor


In the previous examples we have discussed full-text parser plugins that were actually doing the parsing—extracting words from a text. But as we have seen in Chapter 6, a full-text parser plugin does not necessarily have to do that. Only "tokenizer" plugins do. In this example we will create an "extractor" plugin—a plugin that merely converts the data to plain text and lets MySQL parse it with a built-in parser.

As many know, digital cameras store inside an image file the metadata that contains various details about the photo. It is stored using a format called Exif (Exchangeable image file format).

This full-text parser plugin will take the image filenames from the database, parse the Exif data, and allow MySQL to index it. In other words, one can INSERT rows with filenames in the table, but MATCH … AGAINST() will search in the Exif metadata of these images!

How to access Exif data

To extract the image metadata we will use the libexif library. It is included...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €14.99/month. Cancel anytime}