Mysql
 sql >> Database >  >> RDS >> Mysql

Funzione PHP Serialize - Aggiunta di dati serializzati a mysql e quindi recupero e visualizzazione

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.

Se l'applicazione è davvero priva di schema e ha molti parametri facoltativi che non vengono visualizzati in tutti i record, serializzare i dati in una colonna può essere un'idea migliore rispetto ad avere molte colonne aggiuntive che sono NULL.

Questo sarà rispondi alla tua domanda

Devi fare attenzione:

1) Se esegui costantemente piccoli aggiornamenti a un dato in un BLOB molto grande, lo sforzo a cui deve dedicarsi MySQL aumenta notevolmente.

2) perdita di funzionalità:penso che non ti serva per le impostazioni dell'utente.