-
Notifications
You must be signed in to change notification settings - Fork 56
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
feat(chore): storages externalization refactoring #527
Merged
darkweak
merged 14 commits into
master
from
feat/chore/storages-externalization-refactoring
Jul 9, 2024
Merged
feat(chore): storages externalization refactoring #527
darkweak
merged 14 commits into
master
from
feat/chore/storages-externalization-refactoring
Jul 9, 2024
Conversation
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
darkweak
added
enhancement
New feature or request
dependencies
Pull requests that update a dependency file
go
Pull requests that update Go code
labels
Jun 22, 2024
✅ Deploy Preview for teal-sprinkles-4c7f14 canceled.
|
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
2 times, most recently
from
June 23, 2024 16:06
fbcbaa6
to
a8b1557
Compare
darkweak
force-pushed
the
feat/chore/nutsdb-bump-and-fix-redis-surrogate
branch
from
June 23, 2024 16:06
46601cc
to
40af3c2
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
3 times, most recently
from
June 23, 2024 19:38
2a3cc26
to
284481b
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 1, 2024 06:18
284481b
to
c478f1f
Compare
darkweak
changed the base branch from
feat/chore/nutsdb-bump-and-fix-redis-surrogate
to
master
July 1, 2024 06:19
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 1, 2024 06:21
c478f1f
to
9b8e1e5
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
3 times, most recently
from
July 2, 2024 22:36
2598476
to
2cf848e
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 2, 2024 22:55
2cf848e
to
37f0c97
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
2 times, most recently
from
July 7, 2024 11:41
11ade18
to
087ba66
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
2 times, most recently
from
July 7, 2024 11:52
03c620d
to
caeb0ee
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 7, 2024 14:57
caeb0ee
to
84b1908
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
3 times, most recently
from
July 7, 2024 22:16
dbf7eb3
to
b74852c
Compare
…age instances concurrently
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 7, 2024 22:41
b74852c
to
d7b6d10
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
2 times, most recently
from
July 8, 2024 21:07
8ec4316
to
36f8f84
Compare
darkweak
force-pushed
the
feat/chore/storages-externalization-refactoring
branch
from
July 8, 2024 21:22
36f8f84
to
b68678b
Compare
2024-07-09T08:02:16.526Z-iPad_Pro_landscape.jpeg |
2024-07-09T13:23:32.359Z-iPad_Pro_landscape.jpeg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
dependencies
Pull requests that update a dependency file
enhancement
New feature or request
go
Pull requests that update Go code
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.
Seen with @francislavoie, @mohammed90 and other from the @caddyserver team to externalize the storages as independent modules. This implementation will rely on the https://github.com/darkweak/storages repository that will contain all storages available in the sound codebase. The benefits are to tag only improvements in one storage without tagging the whole HTTP cache system, reduce the binary size and be able to pack only what you need.
By default there is a very simple in-memory cache storage but the eviction doesn't work well. That's only for development and backup purpose.
This creates a big diff but that's mainly move from Souin core to the storage repo.