Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
lopadova committed Nov 21, 2024
1 parent 6406ffb commit e8b08fa
Show file tree
Hide file tree
Showing 28 changed files with 1,573 additions and 1,554 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ executors:
php-version:
type: string
default: "8.0"
working_directory: ~/laravel-super-cache
working_directory: ~/laravel-super-cache-invalidate

jobs:
test:
Expand Down
10 changes: 7 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
SUPERCACHE_PREFIX='supercache:'
SUPERCACHE_CONNECTION='default'
SUPERCACHE_NUM_SHARDS=256
SUPERCACHE_INVALIDATE_TOTAL_SHARDS=10
SUPERCACHE_INVALIDATE_INVALIDATION_WINDOW=60
SUPERCACHE_INVALIDATE_PROCESSING_LIMIT=10000
SUPERCACHE_INVALIDATE_TAG_BATCH_SIZE=100
SUPERCACHE_INVALIDATE_LOCK_TIMEOUT=600
SUPERCACHE_INVALIDATE_KEY_INVALIDATION_CALLBACK=
SUPERCACHE_INVALIDATE_TAG_INVALIDATION_CALLBACK=
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Changelog

All Notable changes to `laravel-uploadable` will be documented in this file
All Notable changes to `laravel-super-cache-invalidate` will be documented in this file


## 1.0.0 - 2024-10-03
## 1.0.0 - 2024-11-20

- Initial release
374 changes: 45 additions & 329 deletions README.md

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "padosoft/laravel-super-cache",
"description": "A Laravel package for advanced caching with tags and namespaces in Redis.",
"name": "padosoft/laravel-super-cache-invalidate",
"description": "A powerful package that provides an efficient and scalable cache invalidation system for Laravel applications. It is designed to handle high-throughput cache invalidation scenarios, such as those found in e-commerce platforms, by implementing advanced techniques like event queuing, coalescing, debouncing, sharding, and partitioning.",
"keywords": [
"padosoft",
"cache",
"laravel-super-cache",
"laravel-super-cache-invalidate",
"redis",
"redis-cache"
],
"homepage": "https://github.com/padosoft/laravel-super-cache",
"homepage": "https://github.com/padosoft/laravel-super-cache-invalidate",
"license": "MIT",
"authors": [
{
Expand Down Expand Up @@ -41,12 +41,12 @@
},
"autoload": {
"psr-4": {
"Padosoft\\SuperCache\\": "src"
"Padosoft\\SuperCacheInvalidate\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\SuperCache\\Test\\": "tests"
"Padosoft\\SuperCacheInvalidate\\Test\\": "tests"
}
},
"config": {
Expand Down
Loading

0 comments on commit e8b08fa

Please sign in to comment.