Skip to content

Commit

Permalink
Qualify cache key
Browse files Browse the repository at this point in the history
  • Loading branch information
daftspunk committed Sep 9, 2021
1 parent 3f0a5a5 commit eefc1cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Halcyon/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ public function generateCacheKey()
$payload[] = $this->limit;
$payload[] = $this->offset;

return $this->from . $this->datasource->makeCacheKey(implode('-', $payload));
return 'halcyon_'.$this->from.'_'.$this->datasource->makeCacheKey(implode('-', $payload));
}

/**
Expand Down

0 comments on commit eefc1cd

Please sign in to comment.