We are storing values of differen sets in one MySQL table. Our first try was to use a BIGINT field. All set operations work well with the bitwise logical operations. However here seems no way to handle a MySQL BIGINT (64 bit) in PHP - the value will always get muddled up into a float if it exceeds 31 bits.
What's the best way?
Any experiences in this area?