码迷,mamicode.com
首页 >  
搜索关键字:annotation-config co    ( 7094个结果
Ubuntu18.04下安装Sublime Text3
首先进入root命令界面!我是踩了俩个小时的坑了! wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add - echo "deb https://download.sublimetext.co ...
分类:系统相关   时间:2020-07-13 12:02:17    阅读次数:125
Kibana
官网简介: https://www.elastic.co/guide/en/kibana/current/introduction.html 官网下载: https://www.elastic.co/cn/downloads/kibana logstash-6-1-4 下载解压,执行 ./bin/k ...
分类:其他好文   时间:2020-07-12 20:40:42    阅读次数:286
Elasticsearch
官网下载:https://www.elastic.co/cn/downloads/elasticsearch 下载解压后,运行bin文件夹下的 elasticsearch.bat 看到started说明启动成功,打开浏览器测试一下,如下图 http://localhost:9200 然后可以添加IK ...
分类:其他好文   时间:2020-07-12 20:30:45    阅读次数:152
logstash
官网下载: https://www.elastic.co/cn/downloads/past-releases/ 启动时可能遇到java mysql的时区问题 unrecognized or represents more than one time zone. You must configure ...
分类:其他好文   时间:2020-07-12 20:27:00    阅读次数:75
Swoole 中使用通道(Channel)实现协程间通讯(消息队列)
通道 Coroutine\Channel 使用本地内存,不同的进程之间内存是隔离的。 只能在同一进程的不同协程内进行 push 和 pop 操作。 Co::set(['hook_flags'=> SWOOLE_HOOK_ALL]); Co\run(function(){ // 设置一个容量为1的通道 ...
分类:其他好文   时间:2020-07-12 19:10:33    阅读次数:108
2020.7.11
一、今日学习内容 1、学习第三章:查找 (1)顺序查找 1 public class OrderFind { 2 public static void main(String[] args) { 3 int[] ary= {2,3,4,5,9,7,8}; 4 int find=5; 5 int co ...
分类:其他好文   时间:2020-07-11 22:46:41    阅读次数:76
自己风格的文件内容
#pragma GCC optimize(2) #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e5 + 100; const int maxm = 1e6 + 100; co ...
分类:其他好文   时间:2020-07-11 21:14:46    阅读次数:65
Swoole 协程性能测试
// 开启协程化,文件操作,sleep,Mysqli,PDO,streams等都变成异步IO Co::set(['hook_flags'=> SWOOLE_HOOK_ALL]); $s = microtime(true); // 创建协程容器 Co\run(function() { // 开启100 ...
分类:其他好文   时间:2020-07-11 17:23:32    阅读次数:79
Vue.js学习(三)—— 分别从前后端Nginx解决SpringBoot+vue.js项目中的跨域问题
一、什么是跨域 (1)跨域 由于浏览器同源策略,凡是发送请求url的协议、域名、端口三者之间任意一个与当前页面地址不同即为跨域。存在跨域的情况: 网络协议不同,如http协议访问https协议。 端口不同,如80端口访问8080端口。 域名不同,如qianduanblog.com访问baidu.co ...
分类:编程语言   时间:2020-07-10 19:06:59    阅读次数:63
Moogose的基本连接以及增删改查操作
var mongooes=require("mongoose"); mongooes.connect("mongodb://localhost/my_test",{useMongoClient:true}) mongooes.connection.once("open",function(){ co ...
分类:其他好文   时间:2020-07-10 15:37:04    阅读次数:64
7094条   上一页 1 ... 19 20 21 22 23 ... 710 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!