Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
X Lib
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
XLibs
X Lib
Commits
0c95e0ed
Commit
0c95e0ed
authored
Jun 29, 2016
by
Alex Ne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Коррекция
parent
5fbcc180
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
192 additions
and
136 deletions
+192
-136
Memcache.php
Cache/Memcache.php
+2
-2
TableItem.php
DB/TableItem.php
+190
-134
No files found.
Cache/Memcache.php
View file @
0c95e0ed
...
...
@@ -38,7 +38,7 @@ class Memcache {
}
$key
=
$this
->
prefix
.
$key
;
return
$this
->
mcache
->
set
(
md5
(
$key
)
,
$value
,
0
,
$expire
);
return
$this
->
mcache
->
set
(
$key
,
$value
,
0
,
$expire
);
}
/**
...
...
@@ -50,7 +50,7 @@ class Memcache {
}
$key
=
$this
->
prefix
.
$key
;
return
$this
->
mcache
->
get
(
md5
(
$key
)
,
0
);
return
$this
->
mcache
->
get
(
$key
,
0
);
}
}
?>
\ No newline at end of file
DB/TableItem.php
View file @
0c95e0ed
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment