Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pcb
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
pcb
Merge requests
!2
Issue
#3329824
: Define a PermanentBackendInterface
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Issue
#3329824
: Define a PermanentBackendInterface
issue/pcb-3329824:interface
into
3.0.x
Overview
0
Commits
1
Pipelines
0
Changes
5
Closed
Giuseppe Rota
requested to merge
issue/pcb-3329824:interface
into
3.0.x
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
5
Expand
0
0
Merge request reports
Compare
3.0.x
3.0.x (base)
and
latest version
latest version
43f14145
1 commit,
2 years ago
5 files
+
31
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
modules/pcb_memcache/src/Cache/PermanentMemcacheBackend.php
+
3
−
8
Options
@@ -3,19 +3,14 @@
namespace
Drupal\pcb_memcache\Cache
;
use
Drupal\memcache\MemcacheBackend
;
use
Drupal\pcb\Cache\PermanentBackendInterface
;
/**
* Defines a permanent memcache cache implementation.
*
* This cache implementation can be used for data like
* stock which don't really need to be cleared during normal
* cache rebuilds and need to be cleared . It uses the database to
* store cached data. Each cache bin corresponds to a database
* table by the same name.
*
* @ingroup cache
* {@inheritdoc}
*/
class
PermanentMemcacheBackend
extends
MemcacheBackend
{
class
PermanentMemcacheBackend
extends
MemcacheBackend
implements
PermanentBackendInterface
{
/**
* {@inheritdoc}
Loading