Skip to content
Snippets Groups Projects
Commit be52d8b4 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Work on memcached server

parent 96933ce2
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,8 @@ function dol_setcache($memoryid,$data)
{
$memoryid=session_name().'_'.$memoryid;
$m=new Memcached();
$result=$m->addServer($conf->global->MEMCACHED_SERVER, $conf->global->MEMCACHED_PORT);
$tmparray=explode(':',$conf->global->MEMCACHED_SERVER);
$result=$m->addServer($tmparray[0], $tmparray[1]?$tmparray[1]:11211);
//$m->setOption(Memcached::OPT_COMPRESSION, false);
$m->add($memoryid,$data);
$rescode=$m->getResultCode();
......@@ -67,7 +68,8 @@ function dol_setcache($memoryid,$data)
{
$memoryid=session_name().'_'.$memoryid;
$m=new Memcache();
$result=$m->addServer($conf->global->MEMCACHED_SERVER, $conf->global->MEMCACHED_PORT);
$tmparray=explode(':',$conf->global->MEMCACHED_SERVER);
$result=$m->addServer($tmparray[0], $tmparray[1]?$tmparray[1]:11211);
//$m->setOption(Memcached::OPT_COMPRESSION, false);
$result=$m->add($memoryid,$data);
if ($result)
......@@ -102,7 +104,8 @@ function dol_getcache($memoryid)
{
$memoryid=session_name().'_'.$memoryid;
$m=new Memcached();
$result=$m->addServer($conf->global->MEMCACHED_SERVER, $conf->global->MEMCACHED_PORT);
$tmparray=explode(':',$conf->global->MEMCACHED_SERVER);
$result=$m->addServer($tmparray[0], $tmparray[1]?$tmparray[1]:11211);
//$m->setOption(Memcached::OPT_COMPRESSION, false);
$data=$m->get($memoryid);
$rescode=$m->getResultCode();
......@@ -121,7 +124,8 @@ function dol_getcache($memoryid)
{
$memoryid=session_name().'_'.$memoryid;
$m=new Memcache();
$result=$m->addServer($conf->global->MEMCACHED_SERVER, $conf->global->MEMCACHED_PORT);
$tmparray=explode(':',$conf->global->MEMCACHED_SERVER);
$result=$m->addServer($tmparray[0], $tmparray[1]?$tmparray[1]:11211);
//$m->setOption(Memcached::OPT_COMPRESSION, false);
$data=$m->get($memoryid);
//print "memoryid=".$memoryid." - rescode=".$rescode." - date=".sizeof($data)."\n<br>";
......
......@@ -712,7 +712,7 @@ $heightforframes=48;
/**
* \brief Show HTML header HTML + BODY + Top menu + left menu + DIV
* \param head
* \param head Add optionnal head lines
* \param title
* \param help_url
* \param target
......@@ -885,6 +885,7 @@ function top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs
print '""];';
print '</script>'."\n";
if (! empty($head)) print $head."\n";
if (! empty($conf->global->MAIN_HTML_HEADER)) print $conf->global->MAIN_HTML_HEADER."\n";
print "</head>\n\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment