Skip to content

Commit

Permalink
Revert "initial commit"
Browse files Browse the repository at this point in the history
This reverts commit e8b08fa.
  • Loading branch information
lopadova committed Nov 21, 2024
1 parent 1bcdf34 commit 2822776
Show file tree
Hide file tree
Showing 28 changed files with 1,554 additions and 1,573 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-invalidate
working_directory: ~/laravel-super-cache

jobs:
test:
Expand Down
10 changes: 3 additions & 7 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
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=
SUPERCACHE_PREFIX='supercache:'
SUPERCACHE_CONNECTION='default'
SUPERCACHE_NUM_SHARDS=256
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-super-cache-invalidate` will be documented in this file
All Notable changes to `laravel-uploadable` will be documented in this file


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

- Initial release
374 changes: 329 additions & 45 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-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.",
"name": "padosoft/laravel-super-cache",
"description": "A Laravel package for advanced caching with tags and namespaces in Redis.",
"keywords": [
"padosoft",
"cache",
"laravel-super-cache-invalidate",
"laravel-super-cache",
"redis",
"redis-cache"
],
"homepage": "https://github.com/padosoft/laravel-super-cache-invalidate",
"homepage": "https://github.com/padosoft/laravel-super-cache",
"license": "MIT",
"authors": [
{
Expand Down Expand Up @@ -41,12 +41,12 @@
},
"autoload": {
"psr-4": {
"Padosoft\\SuperCacheInvalidate\\": "src"
"Padosoft\\SuperCache\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Padosoft\\SuperCacheInvalidate\\Test\\": "tests"
"Padosoft\\SuperCache\\Test\\": "tests"
}
},
"config": {
Expand Down
Loading

0 comments on commit 2822776

Please sign in to comment.