Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Cache[AddPermanent] - add a permanent entry to the cache table
Calling Sequence
AddPermanent( cache, key, value )
Parameters
cache
-
cache table or procedure: the object in which to insert the entry
key
list: the key to add
value
anything: the value to associate with key
Description
The AddPermanent command creates a permanent entry associating key with value in a cache table. 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 inserted into that table. Otherwise, a new cache table is created, installed as the procedure's remember table and the permanent entry is inserted into that table.
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).
If more than one argument is passed after key, then an expression sequence containing those arguments is used as value.
Assigning directly into a cache table, using the cache[key] := value notation, creates a temporary entry. Calling AddPermanent is the only way to create a permanent entry into a cache table.
To remove a permanent entry from a cache table use RemovePermanent.
Creating a permanent entry for a key that already has a temporary entry is not an error. In this case, the temporary entry is used.
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[AddTemporary], Cache[PermanentEntries], Cache[PermanentIndices], Cache[RemovePermanent], Cache[RemoveTemporary]
Download Help Document