定制 fyennyi/async-cache-bridge-symfony 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

fyennyi/async-cache-bridge-symfony

最新稳定版本:v1.0.0

Composer 安装命令:

composer require fyennyi/async-cache-bridge-symfony

包简介

Symfony bridge for Fyennyi AsyncCache.

README 文档

README

Latest Stable Version Total Downloads License Tests Test Coverage Static Analysis

This is a Symfony Bridge for the Async Cache PHP library. It integrates the asynchronous caching manager directly into your Symfony application, automatically wiring it with the default Symfony Cache, Lock, and Logger components.

Features

  • Automatic Service Registration: Registers AsyncCacheManager as a service in the container.
  • Seamless Integration: Automatically injects:
    • cache.app (Your default Symfony cache pool).
    • lock.factory (Symfony Lock component for atomic operations).
    • logger (Monolog integration).
    • event_dispatcher.
  • Configuration Friendly: Allows defining global strategies via yaml configuration.

Installation

Run the following command in your terminal:

composer require fyennyi/async-cache-bridge-symfony

If you are not using Symfony Flex, you may need to register the bundle manually in config/bundles.php:

// config/bundles.php
return [
    // ...
    Fyennyi\AsyncCache\Bridge\Symfony\AsyncCacheBundle::class => ['all' => true],
];

Configuration

You can configure the default behavior of the cache manager in config/packages/async_cache.yaml.

# config/packages/async_cache.yaml
async_cache:
    # Set the default strategy for cache misses (strict, background, etc.)
    # Default is 'strict'
    default_strategy: strict 

Usage

Injecting the Manager

The bridge registers the Fyennyi\AsyncCache\AsyncCacheManager class in the service container. You can use dependency injection to access it in your Controllers or Services.

namespace App\Service;

use Fyennyi\AsyncCache\AsyncCacheManager;
use Fyennyi\AsyncCache\CacheOptions;

class WeatherService
{
    public function __construct(
        private AsyncCacheManager $cache
    ) {}

    public function getForecast(string $city): \React\Promise\PromiseInterface
    {
        return $this->cache->wrap(
            'weather_' . $city,
            fn() => $this->fetchFromApi($city),
            new CacheOptions(ttl: 300)
        );
    }

    private function fetchFromApi(string $city) { /* ... */ }
}

Requirements

Since this bridge automatically wires Symfony components, ensure your environment has the necessary services configured:

  • Cache: A configured cache.app pool (standard in Symfony).
  • Lock: The symfony/lock component (recommended for atomic operations).
composer require symfony/lock

Contributing

Contributions are welcome and appreciated! Here's how you can contribute:

  1. Fork the project
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Please make sure to update tests as appropriate and adhere to the existing coding style.

License

This library is licensed under the CSSM Unlimited License v2.0 (CSSM-ULv2). See the LICENSE file for details.

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: LicenseRef-CSSM-Unlimited-2.0
  • 更新时间: 2026-01-29

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固