Cache
Resize
resize a cache table
Calling Sequence
Parameters
Description
Examples
Resize( n, c )
n
-
integer: new size for the cache table
c
cache table or procedure: cache table to resize
The Resize command creates a new cache table that is a resized version of an existing table. The new cache table is created so that it can store at least n elements. If c is a cache table, the new cache table is returned. If c is a procedure with a cache remember table, the remember table is resized and the new table replaces the old one. A reference to the new table is returned.
All the permanent elements of the existing table are added to the new table. Each temporary element of the existing table is inserted into the new table. However, due to the nature of cache tables there is no guarantee that all temporary elements from the existing table will be present in the new table.
For more information on cache tables, see Cache Package.
c1≔Cache⁡60,permanent=1=2,2=3,temporary=3=4,4=5
c1≔Cache⁡64,temporary=3=4,4=5,permanent=1=2,2=3
c2≔Cache:-Resize⁡200,c1
c2≔Cache⁡256,temporary=3=4,4=5,permanent=1=2,2=3
p := proc(x) return 1; end proc;
p ≔ procxreturn1end proc
Cache⁡c2,procedure=p
Cache⁡256,temporary=3=4,4=5,permanent=1=2,2=3
p⁡1
2
p⁡a
1
Cache:-Resize⁡50,p
Cache⁡64,temporary=3=4,4=5,permanent=1=2,2=3
op⁡4,eval⁡p
See Also
Cache Command
Cache Package
Cache[AddPermanent]
Cache[AddTemporary]
Cache[PermanentEntries]
Cache[PermanentIndices]
Cache[RemovePermanent]
Cache[RemoveTemporary]
Cache[TemporaryEntries]
Cache[TemporaryIndices]
option cache
Download Help Document