craftcms/yii2-dynamodb
Composer 安装命令:
composer require craftcms/yii2-dynamodb
包简介
Yii2 implementation of a cache, session, and queue driver for DynamoDB
README 文档
README
Easily use DynamoDB as a cache, session, or queue using this library in your Yii2 or Craft CMS projects.
Note: currently Craft supports Yii2 Queue version 2.3.0 so this package is based on version 2.3.0 of yii2-queue.
Installation
You can install the package via composer:
composer require craftcms/yii2-dynamodb
Usage
This package provides three Yii components for DynamoDB: cache, session, and queue.
Cache Component
Create DynamoDB Cache Table
Since DynamoDB is a NoSQL database, the only key you have to specify is the primary key. You can use the following AWS CLI command to generate a table for the cache.
aws dynamodb create-table --table-name=my-app-cache-table \
--attribute-definitions=AttributeName=id,AttributeType=S \
--key-schema=AttributeName=id,KeyType=HASH \
--billing-mode=PAY_PER_REQUEST
Note: Since the ID can contain more than numbers, it needs to be specified as a string in DynamoDB.
Configure Cache Component
In your app.php, configure the cache component to use the driver.
use craftcms\dynamodb\DynamoDbCache; return [ 'bootstrap' => [ 'cache', ], 'components' => [ 'cache' => [ 'class' => DynamoDbCache::class, 'dataAttribute' => 'data', // optional: defaults to data 'dynamoDb' => [ 'table' => 'my-app-cache-table', 'partitionKeyAttribute' => 'id', // optional: defaults to 'PK' 'endpoint' => 'http://localhost:8000', // optional: used for local or when using DAX 'region' => '<region>', // optional: defaults to AWS_REGION env var 'ttl' => 60*60*24, // optional: number of seconds until items are considered expired 'ttlAttribute' => 'expires' // optional: defaults to 'TTL' 'credentials' => [ 'key' => '<key>', // optional: defaults to AWS_ACCESS_KEY_ID env var 'secret' => '<secret>', // optional: defaults to AWS_SECRET_ACCESS_KEY env var ], ], ], ], ];
Session Component
Create DynamoDB Session Table
Since DynamoDB is a NoSQL database, the only key you have to specify is the primary key. You can use the following AWS CLI command to generate a table for the session.
aws dynamodb create-table --table-name=my-app-session-table \
--attribute-definitions=AttributeName=id,AttributeType=S \
--key-schema=AttributeName=id,KeyType=HASH \
--billing-mode=PAY_PER_REQUEST
Note: Since the ID can contain more than numbers, it needs to be specified as a string in DynamoDB.
Configure Session Component
In your app.php, configure the session component to use the driver.
use craftcms\dynamodb\DynamoDbSession; return [ 'bootstrap' => [ 'session', ], 'components' => [ 'session' => [ 'class' => DynamoDbSession::class, 'dataAttribute' => 'data', // optional: defaults to data 'dynamoDb' => [ 'table' => 'my-app-session-table', 'partitionKeyAttribute' => 'id', // optional: defaults to 'PK' 'endpoint' => 'http://localhost:8000', // optional: used for local or when using DAX 'region' => '<region>', // optional: defaults to AWS_REGION env var 'ttl' => 60*60*24, // optional: number of seconds until items are considered expired 'ttlAttribute' => 'expires' // optional: defaults to 'TTL' 'credentials' => [ 'key' => '<key>', // optional: defaults to AWS_ACCESS_KEY_ID env var 'secret' => '<secret>', // optional: defaults to AWS_SECRET_ACCESS_KEY env var ], ], ], ], ];
Queue Component
Create DynamoDB Queue Table
Since DynamoDB is a NoSQL database, the only key you have to specify is the primary key. You can use the following AWS CLI command to generate a table for the queue.
aws dynamodb create-table --table-name=my-app-queue-table \
--attribute-definitions=AttributeName=id,AttributeType=S \
--key-schema=AttributeName=id,KeyType=HASH \
--billing-mode=PAY_PER_REQUEST
Note: Since the ID can contain more than numbers, it needs to be specified as a string in DynamoDB.
Configure Queue Component
In your app.php, configure the queue component to use the driver.
use craftcms\dynamodb\DynamoDbQueue; return [ 'bootstrap' => [ 'queue', ], 'components' => [ 'queue' => [ 'class' => DynamoDbQueue::class, 'dynamoDb' => [ 'table' => 'my-app-queue-table', 'partitionKeyAttribute' => 'id', // optional: defaults to 'PK' 'endpoint' => 'http://localhost:8000', // optional: used for local or when using DAX 'region' => '<region>', // optional: defaults to AWS_REGION env var 'ttl' => 60*60*24, // optional: number of seconds until items are considered expired 'ttlAttribute' => 'expires' // optional: defaults to 'TTL' 'credentials' => [ 'key' => '<key>', // optional: defaults to AWS_ACCESS_KEY_ID env var 'secret' => '<secret>', // optional: defaults to AWS_SECRET_ACCESS_KEY env var ], ], ], ], ];
Testing
Tests run against local DynamoDB tables using Docker. To run tests, you must run the following:
- Ensure Docker is running
- Start the DynamoDB container in the
docker-compose.yamlwithdocker-compose up -d - Create the DynamoDB tables for the cache, session, and queue
- Run the test suite with
vendor/bin/phpunit --testdox
To make the setup and testing easier, you can run the following Composer scripts:
composer run setupcomposer run test
Credits
License
The MIT License (MIT). Please see License File for more information.
craftcms/yii2-dynamodb 适用场景与选型建议
craftcms/yii2-dynamodb 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 12.48k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2022 年 04 月 25 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「queue」 「cache」 「session」 「dynamodb」 「yii2」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 craftcms/yii2-dynamodb 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 craftcms/yii2-dynamodb 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 craftcms/yii2-dynamodb 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
Secure session middleware for Slim 3 framework
PHP AMQP Binding Library
A Laravel package to monitor queue jobs.
Non-I/O blocking PHP SessionHandler implementation using Nette/Caching with DI Extension for Nette framework
Laravel 5 - Repositories to the database layer
统计信息
- 总下载量: 12.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 12
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-04-25