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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
*
*/
abstract class Loco_data_Transient extends Loco_data_Serializable {
/**
* Lifespan to persist object in transient cache
* @var int seconds
*/
private $ttl = 0;
/**
* Get short suffix for use as end of cache key.
* DB allows 191 characters including "_transient_timeout_loco_" prefix, leaving 167 bytes
* @return string
*/
abstract public function getKey();
/**
* Persist object in WordPress cache
* @param int
* @param bool
* @return Loco_data_Transient
*/
public function persist(){
$key = 'loco_'.$this->getKey();
set_transient( $key, $this->getSerializable(), $this->ttl );
$this->clean();
return $this;
}
/**
* Retrieve and unserialize this object from WordPress transient cache
* @return bool whether object existed in cache
*/
public function fetch(){
$key = 'loco_'.$this->getKey();
$data = get_transient( $key );
try {
$this->setUnserialized($data);
return true;
}
catch( InvalidArgumentException $e ){
return false;
}
}
/**
* @param int
* @return self
*/
public function setLifespan( $ttl ){
$this->ttl = (int) $ttl;
return $this;
}
/**
* Set keep-alive interval
* @param int
* @return self
*/
public function keepAlive( $timeout ){
$time = $this->getTimestamp();
// legacy objects (with ttl=0) had no timestamp, so will always be touched.
// make dirty if this number of seconds has elapsed since last persisted.
if( time() > ( $time + $timeout ) ){
$this->touch()->persistLazily();
}
return $this;
}
}