Possible Duplicate:
What are some good, fast persistant storage options for key->value data?
I wanna design a php-mysql cms and wanna have a registry system. I have many variables that are global for all users and they may change anytime. I try to make a table in mysql and a row in text that contain all my registry values in serialized mode. but it can very slow in big sites. and if I have one row for each variable it can hang-up when registry get heavy. my registry can have up to 1000 variables or maybe more. what is the best method to have a registry system that be fast and optimized for big websites?