Easter79 Easter79
3年前
tornado+peewee
前言:需要异步操作MySQL,又要用orm,使用sqlalchemy需要加celery,觉得比较麻烦,选择了peeweeasync开发环境python3.6.8peeweeasync0.5.12peewee2.10.2数据库:MySQL,使用peeweeasync需要依赖库pipinstal
Easter79 Easter79
3年前
taro 事件处理
https://nervjs.github.io/taro/docs/event.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fnervjs.github.io%2Ftaro%2Fdocs%2Fevent.html)Taro元素的事件处理和DOM元素
Stella981 Stella981
3年前
CentOS8安装Jenkins2.256 和 SonarQube7.1
1.  安装Jenkins下载安装包,这里我们下载war包https://jenkins.io/download/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fjenkins.io%2Fdownload%2F)https://mirrors.tuna.tsingh
Stella981 Stella981
3年前
Mint UI文档
MintUI文档:http://elemefe.github.io/mintui//(https://www.oschina.net/action/GoToLink?urlhttp%3A%2F%2Felemefe.github.io%2Fmintui%2F%23%2F)一、MintUI的安装和基本用法。1.NPM :npmi
Easter79 Easter79
3年前
Taro
微信小程序转Taro (转发https://nervjs.github.io/taro/docs/taroize.html(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fnervjs.github.io%2Ftaro%2Fdocs%2Ftaroize.html))Taro
Stella981 Stella981
3年前
Consul
概述官方网站https://www.consul.io/(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fwww.consul.io%2F)架构!(https://oscimg.oschina.net/oscnet/upf9db2ae432bda5
Stella981 Stella981
3年前
FFmpeg开发实战(二):FFmpeg 文件操作
FFmpeg提供了丰富的API供我们使用,下面我们来讲述一下文件操作相关的API:FFmpeg删除文件:avpriv\_io\_delete()FFmpeg重命名文件:avpriv\_io\_move()FFmpeg打开目录:avio\_open\_dir()FFmpeg读取目录:avio\_read\_d
Wesley13 Wesley13
3年前
Java NIO编程学习总结
目录1、同步,异步,阻塞,非阻塞的理解2、什么是BIO、NIO、AIO3、javaNIO常用类和方法介绍3.1.缓冲区Buffer3.2.通道Channel3.2.1FileChannel3.2.2SocketChan
Stella981 Stella981
3年前
RabbitMQ主备复制是异步还是同步(主从复制方式)
\TOC\RabbitMQ主备复制是异步还是同步(主从复制方式)转载自:水缘泡泡技术集https://www.sypopo.com/post/LgrKqlGVoE/(https://www.oschina.net/action/GoToLink?urlhttps%3A%
Easter79 Easter79
3年前
SpringBoot2.0笔记四
当搞全局捕获异常时可以使用到AOP技术,采用异常通知,也可以用AOP搞日志记录在类上面加上@EnableAsyns注解开启异步调用@Asyns,在方法上加上此注解,可以实现异步调用,底层是多线程技术,相当于加上这个注解的方法重新开启了一个单独的线程正常情况下,当A方法调用B方法时,是需要B方法执行完成,有返回结果时等待返回。这是顺序的方式从上到下