Quelqu'un purrait-il m'expliquer le rôle de la table cache_hash ?
-- -- Structure de la table `cache_hash` -- CREATE TABLE IF NOT EXISTS `cache_hash` ( `id` int(11) unsigned NOT NULL auto_increment, `hash` varchar(32) NOT NULL default '', `content` mediumblob, `tstamp` int(11) unsigned NOT NULL default '0', `ident` varchar(32) NOT NULL default '', PRIMARY KEY (`id`), KEY `hash` (`hash`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
Que se passerait-il si l'on vidait cette table ?
Merci d'avance

Aide












