Extend MemoryStorage with Tags, Priority, Expire and Sliding modifiers. DROP PHP8.1 Support#85
Open
KminekMatej wants to merge 16 commits intonette:masterfrom
Open
Extend MemoryStorage with Tags, Priority, Expire and Sliding modifiers. DROP PHP8.1 Support#85KminekMatej wants to merge 16 commits intonette:masterfrom
KminekMatej wants to merge 16 commits intonette:masterfrom
Conversation
…riority in MemcachedStorage
… dropped Php8.1 support already)
Contributor
Author
|
I took the liberty to fix also failing pipelines, which (unfortunately) resulted in dropping Php8.1 support due to dropped support of php8.1 in upstream latte/latte repo. Latte changed line comments structure from I had two options:
SInce Php 8.1 already reached EOL, I decided to drop this support here as well. Second fixing of pipelines was specifying mandatory extensions in lowest dependencies stage - tests requiring |
3d01371 to
72438d4
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This MR enhances MemoryStorage with ability to index stored items with Tags, Priority, Expiration ts and Sliding.
We are using MemoryStorage during autotests in pipelines to speed up the testing process, but currently we cannot because we highly depend on Tags, Priority etc.
Implementing this feature in MemoryStorage gives us opportunity to speed up the testing process since we could finally replace FileStorage with it.
SInce MemoryStorage is not stored elsewhere then process ram, I dont think it could be considered as BC break.
Tests has been added