diff --git a/VERSIONS b/VERSIONS index b6308c8bd4b2263909377ab15a6b7c49b602fced..65156ba775473e232eab09f973b876a136364d28 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,3 +1,8 @@ +01/09/2015 - v7.2.9 + + - ticket #28810 : diminution de l'empreinte mémoire de cosmogramme à l'indexation des ressources numériques + + 31/08/2015 - v7.2.8 - ticket #28796 : correction de la duplication d'entrées dans les facettes dynamiques si le libellé du champ à indexer est supérieur à 20 caractères diff --git a/cosmogramme/php/integration/pseudo_notices.php b/cosmogramme/php/integration/pseudo_notices.php index 92ce3de63ba362d4374c953dab64657f824aca14..e5374f450067e472915666b78e4e1b9142e3f366 100644 --- a/cosmogramme/php/integration/pseudo_notices.php +++ b/cosmogramme/php/integration/pseudo_notices.php @@ -257,6 +257,11 @@ if ($phase == 0.7) $ret = $notice->traitePseudoNotice($enreg["type_doc_id"], $enreg); tracePseudoNotice($ret, $enreg); $phase_data["pointeur_reprise"] = $enreg["id"]; + + Class_Album::clearCache(); + Class_AlbumRessource::clearCache(); + Class_Notice::clearCache(); + Class_Exemplaire::clearCache(); } } traceRecapPseudoNotices($phase_data); diff --git a/library/startup.php b/library/startup.php index 73224263e86751e5731c986190aa93d0860800cb..2d1891d562006cde3e8f694474541588b0e4173f 100644 --- a/library/startup.php +++ b/library/startup.php @@ -64,7 +64,7 @@ function defineConstant($name, $value) { function setupConstants() { defineConstant('BOKEH_MAJOR_VERSION','7.2'); - defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.8'); + defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.9'); defineConstant('ROOT_PATH', realpath(dirname(__FILE__).'/..').'/');