CmlPHP v2.x 开发手册
获取列表 1.6.6.15.6 7. 注意事项 1.6.6.15.7 16. 同时查询多个库 1.6.6.16 7. 模型-MongoDB 1.6.7 1. Orm详细Api 1.6.7.1 8. 服务 1.6.8 9. 视图 1.6.9 1. 统一的API 1.6.9.1 2. Html模板引擎 1.6.9.2 CmlPHP是基于php5.3+(v2.7开始要求php5.4+)版本开发的MVC/HMVC/MVSC/HMVSC 框架,支持composer、分布式数据库、分布式缓存(异常自动容灾),支持文件、 memcache、redis、apc等缓存,支持多种url模式、URL路由[RESTful],支持多项目集 成、第三方扩展、支持插件。 CmlPHP在Model层做了缓存集成,开发者无需关注数据缓存的问题,按照相应的API调 用即可获得最大性能。从而从根本上避免了新手未使用缓存,或缓存使用不当造成的 性能不佳的问题。也杜绝了多人协同开发缓存同步及管理的问题 CmlPHP支持根目录、子目录,单入口、多入口部署、支持独立服务器、虚拟主机、 VPS等多种环境,绝大部分开发环境可直接运行,无需配置伪静态规则(部分低版本 server只要修改框架URL配置即可,框架会自动处理),快速上手开发。线上环境对SEO 有要求时再配置伪静态即可。0 码力 | 251 页 | 973.37 KB | 1 年前3
CmlPHP v2.x 开发手册
17 1.6.17.1 1.6.17.2 1.6.18 1.6.19 1.6.20 1.6.21 1.6.22 1.6.23 注意事项 同时查询多个库 模型-MongoDB Orm详细Api 服务 视图 统一的API Html模板引擎 Blade模板引擎 锁-并发处理 缓存 语言包 日志 调试 Session自定义保存位置 框架自带的扩展包 插件 使用说明 3+(v2.7开始要求php5.4+)版本开发的 MVC/HMVC/MVSC/HMVSC框架,支持composer、分布式数据库、分 布式缓存(异常自动容灾),支持文件、memcache、redis、apc等缓存, 支持多种url模式、URL路由[RESTful],支持多项目集成、第三方扩 展、支持插件。 CmlPHP在Model层做了缓存集成,开发者无需关注数据缓存的问题, 按照相应的 按照相应的API调用即可获得最大性能。从而从根本上避免了新手未 使用缓存,或缓存使用不当造成的性能不佳的问题。也杜绝了多人协 同开发缓存同步及管理的问题 CmlPHP支持根目录、子目录,单入口、多入口部署、支持独立服务 器、虚拟主机、VPS等多种环境,绝大部分开发环境可直接运行,无 需配置伪静态规则(部分低版本server只要修改框架URL配置即可,框 架会自动处理),快速上手开发。线上环境对SEO有要求时再配置伪静0 码力 | 245 页 | 720.67 KB | 1 年前3
CakePHP Cookbook 3.x
Migration Guide 3.1 Migration Guide 3.1 Migration Guide 3.0 Migration Guide 3.0 Migration Guide New ORM Upgrade Guide Tutorials & Examples Content Management Tutorial Getting CakePHP Checking our Installation Own View Classes More About Views View Cells Themes JSON and XML views Helpers Database Access & ORM Quick Example More Information Database Basics Query Builder Table Objects Entities Retrieving Data “Comment”, or “Photo”. If we wanted to load some data from our users table we could do: use Cake\ORM\TableRegistry; // Prior to 3.6 use TableRegistry::get('Users') $users = TableRegistry::getTableLo0 码力 | 1244 页 | 1.05 MB | 1 年前3
CakePHP Cookbook 4.x
Own View Classes More About Views View Cells Themes JSON and XML views Helpers Database Access & ORM Quick Example More Information Database Basics Query Builder Table Objects Entities Retrieving Data “Comment”, or “Photo”. If we wanted to load some data from our users table we could do: use Cake\ORM\Locator\LocatorAwareTrait; $users = $this->getTableLocator()->get('Users'); $resultset = $users->find()->all(); If we wanted to make a new user and save it (with validation) we would do something like: use Cake\ORM\Locator\LocatorAwareTrait; $users = $this->getTableLocator()->get('Users'); $user = $users->newEntity(['email'0 码力 | 1249 页 | 1.04 MB | 1 年前3
CakePHP Cookbook Documentation 5.xOwn View Classes More About Views View Cells Themes JSON and XML views Helpers Database Access & ORM Quick Example More Information Database Basics Query Builder Table Objects Entities Retrieving Data “Comment”, or “Photo”. If we wanted to load some data from our users table we could do: use Cake\ORM\Locator\LocatorAwareTrait; $users = $this->getTableLocator()->get('Users'); $resultset = $users->find()->all(); If we wanted to make a new user and save it (with validation) we would do something like: use Cake\ORM\Locator\LocatorAwareTrait; $users = $this->getTableLocator()->get('Users'); $user = $users->newEntity(['email'0 码力 | 1080 页 | 939.39 KB | 1 年前3
Django Q Documentation
Release 1.3.6PaaS compatible with multiple instances Multi cluster monitor Redis, Disque, IronMQ, SQS, MongoDB or ORM Rollbar and Sentry support Django Q is tested with: Python 3.7 and 3.8, Django 2.2.x and 3.1.x Currently disque_auth iron_mq sqs orm mongo mongo_db broker_class bulk poll cache cached scheduler error_reporter cpu_affinity Brokers Redis Disque IronMQ Amazon SQS MongoDB Django ORM Custom Broker Reference For example, with the following code # settings.py Q_CLUSTER = { 'retry': 5 'workers': 4, 'orm': 'default', } # example.py from django_q.tasks import async_task async_task('time.sleep', 22)0 码力 | 81 页 | 512.48 KB | 1 年前3
Django Q Documentation
Release 1.3.6PaaS compatible with multiple instances Multi cluster monitor Redis, Disque, IronMQ, SQS, MongoDB or ORM Rollbar and Sentry support Django Q is tested with: Python 3.7 and 3.8, Django 2.2.x and 3.1.x Currently disque_auth iron_mq sqs orm mongo mongo_db broker_class bulk poll cache cached scheduler error_reporter cpu_affinity Brokers Redis Disque IronMQ Amazon SQS MongoDB Django ORM Custom Broker Reference For example, with the following code # settings.py Q_CLUSTER = { 'retry': 5 'workers': 4, 'orm': 'default', } # example.py from django_q.tasks import async_task async_task('time.sleep', 22)0 码力 | 81 页 | 512.34 KB | 1 年前3
Django Q Documentation
Release 0.7.18PaaS compatible with multiple instances Multi cluster monitor Redis, Disque, IronMQ, SQS, MongoDB or ORM Rollbar support Django Q is tested with: Python 2.7 & 3.5. Django 1.8.13 & 1.9.7 Contents: Installation disque_nodes disque_auth iron_mq sqs orm mongo mongo_db broker_class bulk poll cache cached scheduler rollbar cpu_affinity Brokers Redis Disque IronMQ Amazon SQS MongoDB Django ORM Custom Broker Reference Tasks payload not exceeding 256kb. orm If you want to use Django’s database backend as a message broker, set the orm keyword to the database connection you want it to use: # example ORM broker connection Q_CLUSTER0 码力 | 73 页 | 516.84 KB | 1 年前3
Django Q Documentation
Release 0.7.15PaaS compatible with multiple instances Multi cluster monitor Redis, Disque, IronMQ, SQS, MongoDB or ORM Rollbar support Django Q is tested with: Python 2.7 & 3.5. Django 1.8.8 & 1.9.1 Contents: Installation disque_nodes disque_auth iron_mq sqs orm mongo mongo_db broker_class bulk poll cache cached scheduler rollbar cpu_affinity Brokers Redis Disque IronMQ Amazon SQS MongoDB Django ORM Custom Broker Reference Tasks payload not exceeding 256kb. orm If you want to use Django’s database backend as a message broker, set the orm keyword to the database connection you want it to use: # example ORM broker connection Q_CLUSTER0 码力 | 73 页 | 528.16 KB | 1 年前3
Django Q Documentation
Release 0.7.16PaaS compatible with multiple instances Multi cluster monitor Redis, Disque, IronMQ, SQS, MongoDB or ORM Rollbar support Django Q is tested with: Python 2.7 & 3.5. Django 1.8.11 & 1.9.4 Contents: Installation disque_nodes disque_auth iron_mq sqs orm mongo mongo_db broker_class bulk poll cache cached scheduler rollbar cpu_affinity Brokers Redis Disque IronMQ Amazon SQS MongoDB Django ORM Custom Broker Reference Tasks payload not exceeding 256kb. orm If you want to use Django’s database backend as a message broker, set the orm keyword to the database connection you want it to use: # example ORM broker connection Q_CLUSTER0 码力 | 73 页 | 516.76 KB | 1 年前3
共 351 条
- 1
- 2
- 3
- 4
- 5
- 6
- 36













