8. Memory¶
To use the memory as optimal as possible some features need to be constructed:
Optimization
Initialization
Garbage collection
8.1. Function list¶
Name |
Description |
|---|---|
a |
b |
8.2. How is it going to work?¶
To make optimal use out of the memory there will be decoding/encoding used to make the saved string shorter.
Caching on global level will be used too to save load time on long-term storage.
8.2.1. Algorithm Initialization¶
When a memory object not instantiated correctly it will be instantiated. There will be a switch case to fullfil the different memory needs for the different memory object types.
8.2.2. Garbage collection¶
When a memory object is not going to be used anymore it gets removed to save memory space.
8.2.3. Difference between doing no optimization and my system¶
INSERT TEXT LATER