An error occurred while fetching the assigned milestone of the selected merge_request.
Initial implementation for recording cache operations via a decorator.
2 unresolved threads
Closes #3396196
Merge request reports
Activity
added 1 commit
- 6f246c8d - Don't need to do anything with cache tags here.
105 106 /** 107 * {@inheritdoc} 108 */ 109 public function deleteAll() { 110 $start = microtime(TRUE); 111 $this->cacheBackend->deleteAll(); 112 $stop = microtime(TRUE); 113 $this->logCacheOperation([], $start, $stop, 'deleteAll'); 114 } 115 116 /** 117 * {@inheritdoc} 118 */ 119 public function invalidate($cid) { 120 $this->cacheBackend->invalidate($cid); changed this line in version 6 of the diff
- Resolved by catch
added 1 commit
- 25d937ae - Use assertSame() for cache operation assertions.
added 2 commits
131 131 } 132 132 } 133 133 foreach ($performance_test_data['cache_operations'] as $operation) { 134 if ($operation['operation'] === 'getMultiple') { 134 if (in_array($operation['operation'], ['get', 'getMultiple'])) { changed this line in version 14 of the diff
added 39 commits
-
64e4b9ed...869929d8 - 23 commits from branch
project:11.x
- 869929d8...98ea4673 - 6 earlier commits
- 672a3483 - Adjust assertions.
- f36feade - Fix review points.
- e7c5c2fa - Use assertSame() for cache operation assertions.
- 57e59e64 - Try assertSame() for database queries.
- 5cc58206 - Switch to assertSame
- a94910cc - Remove todos.
- a926a123 - Individually log from each method.
- e511f666 - Fix cs
- 39ac57ce - variable naming.
- 089ef298 - Use third parameter for in_arra()
Toggle commit list-
64e4b9ed...869929d8 - 23 commits from branch
Please register or sign in to reply