forked from PHPSocialNetwork/phpfastcache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSaveMultiple.php
More file actions
58 lines (49 loc) · 1.44 KB
/
SaveMultiple.php
File metadata and controls
58 lines (49 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
/**
*
* This file is part of phpFastCache.
*
* @license MIT License (MIT)
*
* For full copyright and license information, please see the docs/CREDITS.txt file.
*
* @author Khoa Bui (khoaofgod) <khoaofgod@gmail.com> https://www.phpfastcache.com
* @author Georges.L (Geolim4) <contact@geolim4.com>
*
*/
// Include composer autoloader
require __DIR__ . '/../../vendor/autoload.php';
// OR require_once("../src/phpFastCache/phpFastCache.php");
use Phpfastcache\CacheManager;
use Phpfastcache\Config\Config;
// Setup File Path on your config files
CacheManager::setDefaultConfig(new Config([
"path" => sys_get_temp_dir()
]));
// In your class, function, you can call the Cache
$InstanceCache = CacheManager::getInstance('files');
$key = "product_page";
$key2 = "product_page2";
$cacheItem = $InstanceCache->getItem($key);
$cacheItem2 = $InstanceCache->getItem($key2);
$cacheItem->set('test')->expiresAfter(300);
$cacheItem2->set('test')->expiresAfter(300);
/**
* Old way, but still working, to persist multiple items
*/
$InstanceCache->save($cacheItem);
$InstanceCache->save($cacheItem2);
/**
* New way to persist multiple items
* (Unlimited arguments)
*/
$InstanceCache->saveMultiple($cacheItem, $cacheItem2);
/**
* New way to persist multiple items
* Alternative for automated mass persisting
*/
/**
* New way to persist multiple items
* (Only first argument will be interpreted)
*/
$InstanceCache->saveMultiple([$cacheItem, $cacheItem2]);