Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
be52d8b4
Commit
be52d8b4
authored
14 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Work on memcached server
parent
96933ce2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/lib/memory.lib.php
+8
-4
8 additions, 4 deletions
htdocs/lib/memory.lib.php
htdocs/main.inc.php
+2
-1
2 additions, 1 deletion
htdocs/main.inc.php
with
10 additions
and
5 deletions
htdocs/lib/memory.lib.php
+
8
−
4
View file @
be52d8b4
...
...
@@ -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>";
...
...
This diff is collapsed.
Click to expand it.
htdocs/main.inc.php
+
2
−
1
View file @
be52d8b4
...
...
@@ -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
"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment