We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93e521e commit 0a2d972Copy full SHA for 0a2d972
1 file changed
src/Dashboards/Memcached/MemcachedTrait.php
@@ -175,14 +175,6 @@ private function viewKey($memcached): string {
175
176
$value = $memcached->get($key);
177
178
- if (is_array($value)) {
179
- $value = serialize($value);
180
- }
181
-
182
- if (is_object($value) || is_resource($value)) {
183
- $value = serialize(serialize($value)); // Double serialization because of formatters.
184
185
186
[$value, $encode_fn, $is_formatted] = Helpers::decodeAndFormatValue($value);
187
188
return $this->template->render('partials/view_key', [
0 commit comments