SkillAgentSearch skills...

Fpcache

An in-memory caching manager for FreePascal

Install / Use

/learn @MFernstrom/Fpcache
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<img src="fpcache_logo.png" />

FPCache is a simple in-memory cache manager for FreePascal with optional data lifespan.

Usage

<pre> uses fpcache; var cache: TCache; begin cache := TCache.Create // Put my name into the cache cache.put('name', 'Marcus'); // Get and WriteLn my name WriteLn(cache.getStr('name')); // Remove my name from the cache cache.delete('name'); // Put my age with a data lifespan of 10 seconds cache.put('age', 32, 10000); // Get and print my age WriteLn(cache.getInt('age')); // Blank string WriteLn(cache.getStr('nope')); // Integer 0 WriteLn(cache.getInt('nope')); // throwOnMissing is optional and defaults to false cache.throwOnMissing := true; // Now we get an exception WriteLn(cache.getStr('nope')); // Don't forget to free the cache when you're done cache.free; end; </pre>

Related Skills

View on GitHub
GitHub Stars4
CategoryDevelopment
Updated1y ago
Forks0

Languages

Pascal

Security Score

75/100

Audited on Jul 18, 2024

No findings