- 授权协议: MIT
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: https://github.com/Corollarium/cachearium
- 软件文档: https://github.com/Corollarium/cachearium
软件介绍
Cachearium 是一个用于 PHP 应用的高级缓存框架。
示例代码:
$data = 'xxxx';
// store
$cache = CacheAbstract::factory('your backend');
$cache->store($data, new CacheKey('Namespace', 'Subname'));
// get it later
try {
$data2 = $cache->get(new CacheKey('Namespace', 'Subname'));
// $data2 == 'xxxx';
}
catch (NotCachedException($e)) {
// handle not cached
}
// store new value with automatic invalidation
$data = 'yyy';
$cache->store($data, new CacheKey('Namespace', 'Subname'));Beginning ARKit for iPhone and iPad
Wallace Wang / Apress / 2018-11-5 / USD 39.99
Explore how to use ARKit to create iOS apps and learn the basics of augmented reality while diving into ARKit specific topics. This book reveals how augmented reality allows you to view the screen on ......一起来看看 《Beginning ARKit for iPhone and iPad》 这本书的介绍吧!
