Serialization can be attempted or can be a good approach to store user settings
or preferences – you only really need to store the settings that differ from the
default values.
Serialization is good approach for just storing and getting back data
not for
searching on the serialized column or update individual value in the column.
If you want to just store and update user settings as on change and just
deserialize nothing from php and nothing to do with the values in the column
much specifically. Go for Serialization.
It can in no ways help you maintain
relationship with serialized data. The moment you require to make the data
serialized meaningful or relational. You need to
normalize.
Wenn die Anwendung wirklich schemalos ist und viele optionale Parameter hat, die nicht in jedem Datensatz erscheinen, kann das Serialisieren der Daten in einer Spalte eine bessere Idee sein, als viele zusätzliche Spalten zu haben, die NULL sind.
Dies wird Beantworte deine Frage
Sie müssen aufpassen:
1) Wenn Sie ständig kleine Aktualisierungen an einem Datenelement in einem sehr großen Blob vornehmen, erhöht sich der Aufwand für MySQL erheblich.
2) Funktionsverlust:Ich denke, Sie brauchen es nicht für Benutzereinstellungen.