-
Notifications
You must be signed in to change notification settings - Fork 471
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CachedParser: use LRU cache #2879
Closed
Closed
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Parser; | ||
|
||
use LogicException; | ||
use function array_key_first; | ||
use function array_keys; | ||
use function count; | ||
use function sprintf; | ||
|
||
/** | ||
* @template TValue | ||
* @implements ParserCache<TValue> | ||
*/ | ||
class LRUCache implements ParserCache | ||
{ | ||
|
||
/** @var array<string, TValue> */ | ||
private array $cache; | ||
|
||
public function __construct(private int $capacity) | ||
{ | ||
$this->cache = []; | ||
} | ||
|
||
/** | ||
* @return TValue | ||
*/ | ||
public function get(string $key) | ||
{ | ||
if (!isset($this->cache[$key])) { | ||
throw new LogicException(sprintf('Key %s was not found in the cache, use ->has() first', $key)); | ||
} | ||
|
||
$value = $this->cache[$key]; | ||
unset($this->cache[$key]); | ||
$this->cache[$key] = $value; | ||
|
||
return $this->cache[$key]; | ||
} | ||
|
||
/** | ||
* @param TValue $value | ||
*/ | ||
public function put(string $key, $value): void | ||
{ | ||
if (count($this->cache) >= $this->capacity) { | ||
unset($this->cache[array_key_first($this->cache)]); | ||
} | ||
|
||
$this->cache[$key] = $value; | ||
} | ||
|
||
public function has(string $key): bool | ||
{ | ||
return isset($this->cache[$key]); | ||
} | ||
|
||
public function getCount(): int | ||
{ | ||
return count($this->cache); | ||
} | ||
|
||
/** | ||
* @return list<array-key> | ||
*/ | ||
public function getKeys(): array | ||
{ | ||
return array_keys($this->cache); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Parser; | ||
|
||
/** | ||
* @template TValue | ||
*/ | ||
interface ParserCache | ||
{ | ||
|
||
/** | ||
* @return TValue | ||
*/ | ||
public function get(string $key); | ||
|
||
/** | ||
* @param TValue $value | ||
*/ | ||
public function put(string $key, $value): void; | ||
|
||
public function has(string $key): bool; | ||
|
||
public function getCount(): int; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Parser; | ||
|
||
use LogicException; | ||
use function count; | ||
use function sprintf; | ||
|
||
/** | ||
* @template TValue | ||
* @implements ParserCache<TValue> | ||
*/ | ||
class UnlimitedCache implements ParserCache | ||
{ | ||
|
||
/** @var array<string, TValue> */ | ||
private array $cache; | ||
|
||
public function __construct() | ||
{ | ||
$this->cache = []; | ||
} | ||
|
||
/** | ||
* @return TValue | ||
*/ | ||
public function get(string $key) | ||
{ | ||
if (!isset($this->cache[$key])) { | ||
throw new LogicException(sprintf('Key %s was not found in the cache, use ->has() first', $key)); | ||
} | ||
|
||
return $this->cache[$key]; | ||
} | ||
|
||
/** | ||
* @param TValue $value | ||
*/ | ||
public function put(string $key, $value): void | ||
{ | ||
$this->cache[$key] = $value; | ||
} | ||
|
||
public function has(string $key): bool | ||
{ | ||
return isset($this->cache[$key]); | ||
} | ||
|
||
public function getCount(): int | ||
{ | ||
return count($this->cache); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<?php declare(strict_types = 1); | ||
|
||
namespace PHPStan\Parser; | ||
|
||
use PHPUnit\Framework\TestCase; | ||
|
||
class LRUCacheTest extends TestCase | ||
{ | ||
|
||
public function testBasics(): void | ||
{ | ||
$cache = new LRUCache(3); | ||
|
||
$cache->put('1', '1'); | ||
$cache->put('2', '2'); | ||
$cache->put('3', '3'); | ||
self::assertSame([1, 2, 3], $cache->getKeys()); | ||
|
||
$cache->get('2'); | ||
self::assertSame([1, 3, 2], $cache->getKeys()); | ||
|
||
$cache->put('4', '4'); | ||
self::assertSame([3, 2, 4], $cache->getKeys()); | ||
|
||
$cache->get('2'); | ||
self::assertSame([3, 4, 2], $cache->getKeys()); | ||
|
||
$cache->get('2'); | ||
self::assertSame([3, 4, 2], $cache->getKeys()); | ||
|
||
$cache->put('5', '5'); | ||
self::assertSame([4, 2, 5], $cache->getKeys()); | ||
} | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it might make sense to try SplFixedArray here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm our capacity is too small for it beeing useful
https://stackoverflow.com/a/11831076