Skip to content

Commit 6fae482

Browse files
authored
Merge pull request #92 from moufmouf/fix_conflicting_cache_key
Fixing colliding cache key for the schema
2 parents 1064834 + 37a3f91 commit 6fae482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/TDBMSchemaAnalyzer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function getCachePrefix(): string
7575
public function getSchema(): Schema
7676
{
7777
if ($this->schema === null) {
78-
$cacheKey = $this->getCachePrefix().'_schema';
78+
$cacheKey = $this->getCachePrefix().'_immutable_schema';
7979
if ($this->cache->contains($cacheKey)) {
8080
$this->schema = $this->cache->fetch($cacheKey);
8181
} else {

0 commit comments

Comments
 (0)