2
# perform a query on the memcached I_S statistics tables before the
3
# memcached related system variable has been set. Both of these queries
8
from information_schema.memcached_stats;
11
from information_schema.memcached_analysis;
14
# Look at the current value of the memcached related system variable
16
select variable_name, variable_value
17
from information_schema.global_variables
18
where variable_name = 'memcached_stats_servers';
21
# Now try setting it to a certain value
23
set global memcached_stats_servers = 'localhost:11211';
26
# make sure the system variable has been updated
28
select variable_name, variable_value
29
from information_schema.global_variables
30
where variable_name = 'memcached_stats_servers';
33
# Once the ability to created an embedded server has been added to
34
# memcached, we will actually start up an embedded server and perform some
35
# queries on it here...