38 lines
449 B
Plaintext
38 lines
449 B
Plaintext
|
|
|
|
RENDER()
|
|
{
|
|
DTree t;
|
|
|
|
<>
|
|
<link rel="stylesheet" href='style.css'></link>
|
|
<h1>
|
|
<a href="index.uce">UCE Test</a>:
|
|
MemcacheD
|
|
</h1>
|
|
|
|
Stats:
|
|
|
|
<pre><?
|
|
|
|
auto sfd = memcache_connect();
|
|
|
|
echo(memcache_get_raw(sfd, "stats"));
|
|
|
|
?></pre>
|
|
|
|
Set/Get:
|
|
|
|
<pre><?
|
|
|
|
memcache_set(sfd, "test_key", "test_value");
|
|
echo(memcache_get_raw(sfd, "get test_key"));
|
|
|
|
?></pre>
|
|
|
|
Params
|
|
<pre><?= var_dump(context->params) ?></pre>
|
|
</>
|
|
|
|
}
|