Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Cache[RemovePermanent] - remove a permanent entry from the cache table
Calling Sequence
RemovePermanent( cache, key )
Parameters
cache
-
cache table or procedure: the object the entry is removed from
key
list: the key to remove
Description
The RemovePermanent command removes the permanent entry for which key is the key. The cache table can be given directly as cache, or cache can refer to a procedure that has, or can have, a cache remember table. If such a procedure is given and it has a cache remember table, the permanent entry is removed from that table. If the procedure does not have a table, no action is taken.
To handle an expression sequence as a key, key must be given in a list. The actual key used for the entry is op(key).
Calling RemovePermanent is the only way to remove a permanent entry from a cache table.
To add a permanent entry to a cache table, use AddPermanent.
For more information on cache tables, see Cache Package.
Examples
p := proc(x,y) option cache; x+y; end proc;
See Also
Cache Package, Cache[AddPermanent], Cache[AddTemporary], Cache[PermanentEntries], Cache[PermanentIndices], Cache[RemoveTemporary]
Download Help Document