I want to store igbinary binary serialize data into MySQL. To improve performance is better to use TEXT or BLOB, or etc.
2 Answers
You should use BLOB, as BLOB stands for Binary Large OBject, if you start storing binary data as text you could start to see all sorts of unexpected results.
There is some documentation explaining the datatypes: http://dev.mysql.com/doc/refman/5.0/en/blob.html
If you really want to store as text, Base64 encoding is what you need to look into, some more details here: