pteal79/mobile-file-cache
Composer 安装命令:
composer require pteal79/mobile-file-cache
包简介
Offline-friendly remote file caching for NativePHP and Laravel.
README 文档
README
Offline-friendly remote file caching for Laravel 12, NativePHP 3.1, and Livewire 3.
Installation
composer require pteal79/mobile-file-cache php artisan vendor:publish --tag=mobile-file-cache-config php artisan vendor:publish --tag=mobile-file-cache-migrations php artisan migrate
Config
return [ 'disk' => env('MOBILE_FILE_CACHE_DISK', 'mobile_public'), 'directory' => env('MOBILE_FILE_CACHE_DIRECTORY', 'cached_files'), 'cleanup_after_days' => 30, 'max_file_size_mb' => 30, 'timeout' => 60, 'allowed_mime_types' => [ 'application/pdf', 'image/jpeg', 'image/png', 'image/gif', 'image/webp', 'image/svg+xml', ], 'queue' => [ 'tries' => 3, 'backoff' => [5, 30, 120], 'http_retries' => 3, 'http_retry_sleep_ms' => 250, ], ];
Usage
use MobileFileCache; $displayableUrl = MobileFileCache::get($remoteUrl); $absolutePath = MobileFileCache::get($remoteUrl, true); MobileFileCache::cache($remoteUrl); MobileFileCache::invalidate($remoteUrl); $totalBytes = MobileFileCache::totalCacheSize(); $totalFiles = MobileFileCache::totalCacheRecords(); MobileFileCache::clearAged(); MobileFileCache::clear();
Observer example
public function created(SomeModel $model): void { if ($model->remote_image_url) { MobileFileCache::cache($model->remote_image_url); } }
Notes
- Full URLs are hashed including query parameters, so signed or versioned file URLs are cached independently.
MobileFileCache::get()returns the original URL until the queued download has completed.- Cached files are stored under the configured disk in the
cached_files/directory by default. - Only images and PDFs are cached by default through MIME validation.
- Files larger than 30 MB are skipped.
- The queue job supports configurable queue retries and HTTP retries.
file-cache:clean-upremoves aged entries using the configured retention period.
Testing
composer test
Allowed MIME types
By default the package caches PDFs and common image formats, including HEIC/HEIF (image/heic, image/heif).
Batched worker queue flow
MobileFileCache::cache($url) now creates a deduplicated pending request instead of dispatching one download job per URL.
MobileFileCache::hasPendingRequests() returns a boolean indicating whether pending cache requests exist. When pending requests are present, the package dispatches a unique CacheFileWorker job onto Laravel's default queue. The worker processes pending requests in batches and re-dispatches itself if more work remains.
New table: mobile_file_cache_pending_requests
This table stores outstanding cache requests, deduplicated by the full remote URL hash.
pteal79/mobile-file-cache 适用场景与选型建议
pteal79/mobile-file-cache 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 48 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 03 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 pteal79/mobile-file-cache 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pteal79/mobile-file-cache 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 48
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 24
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-03-29