Sign in
apache
/
apex-malhar
/
CassandraPOJOImplementation
/
.
/
contrib
/
src
/
main
/
html
/
siteops
/
TotalViews.php
blob: a7859b2755a738e7182cd7762a5219bb54ef4886 [
file
] [
log
] [
blame
]
<?
php
header
(
"Content-type: application/json"
);
$redis
=
new
Redis
();
$redis
->
connect
(
'127.0.0.1'
);
$redis
->
select
(
11
);
$value
=
$redis
->
get
(
1
);
print
$value
;
?>