书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 83 个相关结果.
  • Overview

    02 Install drogon Drogon is a C++14/17-based HTTP application framework. Drogon can be used to easily build various types of web application server programs using C++. Drogo...
  • WebSocketController

    WebSocketController WebSocketConnection 05 过滤器 WebSocketController 顾名思义,WebSocketController 用于处理websocket逻辑。websocket是基于HTTP的一种长连接方案,在websocket建立之初,有一次HTTP格式的请求和应答交换,建立完成后,所...
  • Filter

    Built-in Filter Custom Filter Filter Registration 06 View In HttpController’s example , the getInfo method should check whether the user is logged in before returning the us...
  • 自动批处理模式

    pipeline模式 自动批处理 自动批处理的使能 09 插件 自动批处理模式只对postgresql 14+版本的客户端库有效,其他情况下会被忽略,讲自动批处理之前,先了解一下pipeline模式。 pipeline模式 从postgresql 14之后,它的客户端库提供了pipelining模式接口,在pipelining模式下,新sq...
  • Controller

    Controller Controller life cycle 04.1 HttpSimpleController Controller The controller is very important in web application development. It processes the request sent by the b...
  • HttpSimpleController

    04.2 HttpController You could use the drogon_ctl command line tool to quickly generate custom controller class source files based on HttpSimpleController . The command format ...
  • 数据库

    概述 客户端 事务 ORM 08.1 DbClient 概述 Drogon 内置了数据库读写引擎,对数据库连接的操作基于non-blocking I/O技术实现,因此,从底层到上层接口,都是高效率的非阻塞异步方式,保证了Drogon对高并发性能的追求。目前,Drogon支持PostgreSQL和MySQL数据库,如果要使用数据库,开发系统必...
  • 性能测试

    测试环境 测试方案和结果 作为C++的Http应用框架,性能应该是关注的重点之一,本节介绍Drogon的简单测试和成绩; 测试环境 系统是Linux CentOS 7.4; 设备是Dell服务器,CPU是两颗Intel(R) Xeon(R) CPU E5-2670 @ 2.60GHz,16核32线程; 内存64GB; gcc版本7.3.0; ...
  • 控制器

    简介 控制器的生命周期 04.1 HttpSimpleController 简介 控制器(controller)在web应用开发中处于相当重要的地位,它处理浏览器发来的请求,然后生成响应发送给浏览器;drogon框架已经帮我们处理好网络传输、Http协议的解析等等细节,我们只需要关注控制器的逻辑即可;每一个控制器对象可以有一个或者多个处理函数(...
  • View

    Views Introduction Drogon’s CSP The use of views A simple example Automated processing of csp files Dynamic compilation and loading of views 07 Session Views Introductio...