Swoole:面向生产环境的 PHP 异步网络通信引擎 使 PHP 开发人员可以编写高性能的异步并发 TCP、UDP、Unix Socket、HTTP,WebSocket 服务。Swoole 可以广泛应用于互联网、移动通信、企业软件、云计算、网络游戏、物联网(IOT)、车联网、智能家居等领域。使用 ...
分类:
Web程序 时间:
2020-12-31 12:27:30
阅读次数:
0
原生ajax的get和post方法封装:https://www.cnblogs.com/qiuxiaozhen/p/10568314.html get 方法 function serialize (data) { if (!data) { return ''; } var paris = []; f ...
分类:
Web程序 时间:
2020-12-31 12:23:17
阅读次数:
0
异步的概念 ajax 编程 异步实现的几种方式 回调函数 promise 生成器 async await 异步编程的概念 有异步编程,就有同步编程 console.log("Hello"); console.log("World"); for(let i=0;i<5;i++){ console.lo ...
分类:
Web程序 时间:
2020-12-31 12:10:41
阅读次数:
0
1.我们通过Java来向某个WebHook地址发送POST请求,并携带我们需要发送的消息2.代码示例搭建Maven项目,在pom.xml文件里引入httpclient依赖 1 <dependency> 2 <groupId>org.apache.httpcomponents</groupId> 3 ...
分类:
微信 时间:
2020-12-31 12:09:45
阅读次数:
0
使用中间件: redux-thunk redux-saga redux-promise ...
分类:
其他好文 时间:
2020-12-30 10:42:09
阅读次数:
0
PUT test/_doc/1 { "content":"Hello World" } GET test/_analyze { "explain": true, "analyzer": "standard", "text": "Hello World" } POST test/_search { " ...
分类:
其他好文 时间:
2020-12-29 11:59:23
阅读次数:
0
一、Scrapy的简介 Scrapy 是基于twisted框架开发而来,twisted是一个流行的事件驱动的python网络框架。因此Scrapy使用了一种非阻塞(又名异步)的代码来实现并发。整体架构大致如下 它主要由五大组件和两中间件组成: 五大组件: 1、引擎(ENGINE):用来处理整个系统的 ...
分类:
其他好文 时间:
2020-12-29 11:11:00
阅读次数:
0
# __author: "ZXYang"# date: 2020/12/22"""[[async]]async def: 【异步函数】async with: 【异步上下文】 对象必须符合异步上下文管理器: __aenter__ __aexit__async for: 【异步迭代】 被迭代对象必须要实 ...
分类:
Web程序 时间:
2020-12-29 11:03:57
阅读次数:
0
uvloopasyncio 的事件循环的替代方案效率默认大于asyncio的事件循环性能是更高的性能接近gopip install uvloopimport asyncioimport uvloopasyncio.set_event_loop_policy(uvloop.EventLoopPolic ...
分类:
数据库 时间:
2020-12-28 11:42:18
阅读次数:
0
SpringBoot2.x 工作流开源项目 工作流开源项目: 项目名 链接地址 JSITE https://gitee.com/baseweb/JSite flowableJava https://gitee.com/lwj/flowable Guns(集成Activiti工作流版本 ) https ...
分类:
编程语言 时间:
2020-12-28 11:31:29
阅读次数:
0