taran/cockroachdb-lumen
Composer 安装命令:
composer require taran/cockroachdb-lumen
包简介
CockroachDB driver for Lumen 8
关键字:
README 文档
README
CockroachDB database driver for Lumen 8 forked from nbj/cockroachdb-laravel
Usage
Step 1: Install Through Composer
composer require taran/cockroachdb-lumen
Step 2: Add the Service Provider (This happens automatically in Laravel 5.5)
Open config/app.php and, to your "providers" array, add:
Taran\Cockroach\CockroachServiceProvider::class
Step 3: Add Database Driver Configuration
Open config/datbase.php and, to your "connections" array, add:
'cockroach' => [ 'driver' => 'cockroach', 'host' => env('DB_HOST', 'HOSTNAME-OF-COCKROACH-SERVER'), 'port' => env('DB_PORT', '26257'), 'database' => env('DB_DATABASE', 'DATABASE-NAME'), 'username' => env('DB_USERNAME', 'root'), 'password' => env('DB_PASSWORD', ''), 'charset' => 'utf8', 'prefix' => '', 'schema' => 'DATABASE-NAME', 'sslmode' => 'prefer', // Only set these keys if you want to run en secure mode // otherwise you can them out of the configuration array 'sslcert' => env('DB_SSLCERT', 'client.crt'), 'sslkey' => env('DB_SSLKEY', 'client.key'), 'sslrootcert' => env('DB_SSLROOTCERT', 'ca.crt'), ],
Make sure to update host, port, database, username, password and schema to your configuration. Note the database and schema fields should be the same.
Secure Mode
Update sslcert, sslkey and sslrootcert with your path configuration.
CockroachDB 2
Changes made to CockroachDB handles schemas slightly different when using the PHP Postgres driver. So instead of using:
'schema' => 'DATABASE-NAME'
We need to use the Postgres default of public so change your config
to:
'schema' => 'public'
And everything should work as expected.
Known issues
- Constraints cannot be in the same migration as the creation of a table. The workaround is to add your constraints to its own migration after the table has been created.
Usage without lumen
It is entirely possible to use this driver without the entire Lumen framework.
Laravel's database components are neatly packaged in its own composer package
called illuminate/database Simply require this package into your project, and
you are ready to go.
composer require illuminate/database
composer require taran/cockroachdb-lumen
To set up a database connection you need to create a new Capsule and register it.
<?php use Illuminate\Database\Connection; use Taran\Cockroach\CockroachConnector; use Taran\Cockroach\CockroachConnection; use Illuminate\Database\Capsule\Manager as DB; require 'vendor/autoload.php'; $config = [ // Your configuration goes here ]; // Add connection resolver for the cockroach driver Connection::resolverFor('cockroach', function ($connection, $database, $prefix, $config) { $connection = (new CockroachConnector)->connect($config); return new CockroachConnection($connection, $database, $prefix, $config); }); // Create a new DatabaseManager instance $db = new DB; // Add a connection using your configuration $db->addConnection($config); // Register the DatabaseManager instance as global $db->setAsGlobal();
It is even possible to use Eloquent (Laravel's ORM) if you choose to. Simply add:
$db->bootEloquent();
By this point you are able to use the globally registered DatabaseManager like this:
<?php use Illuminate\Database\Capsule\Manager as DB; require 'vendor/autoload.php'; // Fetch all users from the users table $users = DB::table('users')->get();
taran/cockroachdb-lumen 适用场景与选型建议
taran/cockroachdb-lumen 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.28k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 02 月 24 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「lumen」 「cockroach」 「cockroachdb」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 taran/cockroachdb-lumen 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 taran/cockroachdb-lumen 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 taran/cockroachdb-lumen 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Testing Suite For Lumen like Laravel does.
CockroachDB driver for Laravel 8
Simple CockroachDB driver for Laravel 6+
Doctrine DBAL CockroachDB Driver
Doctrine DBAL CockroachDB Driver Bundle for Symfony
Doctrine CockroachDB Driver (Symfony supports)
统计信息
- 总下载量: 7.28k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-02-24