16 lines
680 B
PHP
16 lines
680 B
PHP
|
<?php
|
|||
|
// This is a SPIP language file -- Ceci est un fichier langue de SPIP
|
|||
|
// extrait automatiquement de https://trad.spip.net/tradlang_module/paquet-memoization?lang_cible=en
|
|||
|
// ** ne pas modifier le fichier **
|
|||
|
|
|||
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
$GLOBALS[$GLOBALS['idx_lang']] = array(
|
|||
|
|
|||
|
// M
|
|||
|
'memoization_description' => 'Memoization is a computer science term, which Wikipedia defines as "a technique of reducing the execution time of a function by storing the results once on the other." It is also the name of a new function library for PHP, which follows my experiments XCache.',
|
|||
|
'memoization_slogan' => 'Various methods to process SPIP’s cache.'
|
|||
|
);
|