Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Yurunsoft/tdengine-orm
基于 tdengine-restful-connector、php-tdengine 开发的 TDEngine ORM。
https://github.com/Yurunsoft/tdengine-orm
php tdengine
Last synced: 1 day ago
JSON representation
基于 tdengine-restful-connector、php-tdengine 开发的 TDEngine ORM。
- Host: GitHub
- URL: https://github.com/Yurunsoft/tdengine-orm
- Owner: Yurunsoft
- License: mit
- Created: 2021-12-09T01:57:38.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-25T06:50:31.000Z (almost 2 years ago)
- Last Synced: 2024-04-24T14:19:43.420Z (6 months ago)
- Topics: php, tdengine
- Language: PHP
- Homepage:
- Size: 39.1 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-tdengine - tdengine-orm - TDengine ORM based on tdengine-restful-connector & php-tdengine.<!--lint ignore awesome-list-item--> (ORM)
README
# tdengine-orm
[![Latest Version](https://poser.pugx.org/yurunsoft/tdengine-orm/v/stable)](https://packagist.org/packages/yurunsoft/tdengine-orm)
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/Yurunsoft/tdengine-orm/ci/master)
[![Php Version](https://img.shields.io/badge/php-%3E=7.1-brightgreen.svg)](https://secure.php.net/)
[![License](https://img.shields.io/github/license/Yurunsoft/tdengine-orm.svg)](https://github.com/Yurunsoft/tdengine-orm/blob/master/LICENSE)## 简介
基于 [tdengine-restful-connector](https://github.com/Yurunsoft/tdengine-restful-connector)、[php-tdengine](https://github.com/Yurunsoft/php-tdengine) 开发的 TDEngine ORM。
支持创建超级表、创建表、批量插入数据。
此项目支持在 PHP >= 7.1 的项目中使用。
支持在 ThinkPHP、Laravel、[Swoole](https://github.com/swoole/swoole-src)、[imi](https://github.com/imiphp/imi) 等项目中使用
在 Swoole 环境中支持协程化,不会阻塞!
技术支持 QQ 群: 17916227[![点击加群](https://pub.idqqimg.com/wpa/images/group.png "点击加群")](https://jq.qq.com/?_wv=1027&k=5wXf4Zq),如有问题可以及时解答和修复。
## 安装
`composer require yurunsoft/tdengine-orm`
## 使用
**使用连接管理器:**
```php
// 增加名称为 test 的连接配置
\Yurun\TDEngine\TDEngineManager::setClientConfig('test', new \Yurun\TDEngine\ClientConfig([
// 'host' => '127.0.0.1',
// 'hostName' => '',
// 'port' => 6041,
// 'user' => 'root',
// 'password' => 'taosdata',
// 'ssl' => false,
// 'timestampFormat' => \Yurun\TDEngine\Constants\TimeStampFormat::LOCAL_STRING,
// 'keepAlive' => true,
]));
// 设置默认数据库为test
\Yurun\TDEngine\TDEngineManager::setDefaultClientName('test');
// 获取客户端对象(\Yurun\TDEngine\Client)
$client = \Yurun\TDEngine\TDEngineManager::getClient();
// 不设置连接驱动时,会判断安装扩展优先使用扩展
// 设置连接驱动为 RESTful
\Yurun\TDEngine\Orm\TDEngineOrm::setClientHandler(new \Yurun\TDEngine\Orm\ClientHandler\Restful\Handler());
// 设置连接驱动为 PHP 扩展
\Yurun\TDEngine\Orm\TDEngineOrm::setClientHandler(new \Yurun\TDEngine\Orm\ClientHandler\Extension\Handler());
```**定义模型:**
```php
xxx = xxx; // 设置一些字段值
$record->insert();
```**批量插入数据:**
```php
$record1 = new DeviceLogModel([
// 初始化模型数据
], '表名1');
$record2 = new DeviceLogModel([
// 初始化模型数据
], '表名2');
DeviceLogModel::batchInsert([$record1, $record2]);
```