I want to store a 512 bit data in mysql.
I'm wondering if it is better to store it as char(64) or 8 columns of bigint or something else?
My priority is to maximize the speed of comparison (I am ok to have slow updates, inserts, deletes in exchange for a faster comparison speed)
(I am aware simply storing it as char(64) will probably take the least development time, however although that's very important, it's currently ranked last in my set of priorities)