ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
Files
File List
+
Globals
+
All
$
(
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilExampleCache.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
include_once(
"./Services/Cache/classes/class.ilCache.php"
);
5
15
class
ilExampleCache
extends
ilCache
16
{
23
function
__construct
()
24
{
25
parent::__construct(
"ServicesCache"
,
"Example"
,
false
);
26
$this->
setExpiresAfter
(5);
// only five seconds to make a hit
27
// usually you would this value from some setting
28
}
29
}
30
?>
ilExampleCache
Example cache class.
Definition:
class.ilExampleCache.php:15
ilCache
Cache class.
Definition:
class.ilCache.php:18
ilCache\setExpiresAfter
setExpiresAfter($a_val)
Set expires after x seconds.
Definition:
class.ilCache.php:109
ilExampleCache\__construct
__construct()
Constructor.
Definition:
class.ilExampleCache.php:23
Services
Cache
classes
class.ilExampleCache.php
Generated on Mon Dec 21 2020 19:01:10 for ILIAS by
1.8.13 (using
Doxyfile
)