git:git@github.com:ccx19930930/services_register_and_discovery.git 参考链接:https://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html base_class.h 1 ...
分类:
编程语言 时间:
2020-05-30 20:16:08
阅读次数:
68
1:18 1.什么是高并发系统的消息队列? 队列:对头+队列容器+对尾 消息队列(MessageQueue MQ):有一个队列容器,生产者(入队列),消费者(出队列) 2.使用消息队列的场景(使用消息队列的原因): 2.1 分布式场景 2.1.1 异步处理 多线程可以节省时间,但是会降低cpu吞吐量 ...
分类:
其他好文 时间:
2020-05-30 19:56:13
阅读次数:
59
git:git@github.com:ccx19930930/services_register_and_discovery.git 参考链接:https://www.cnblogs.com/haippy/archive/2013/02/21/2920280.html down_service_mg ...
分类:
编程语言 时间:
2020-05-30 19:55:01
阅读次数:
56
1.新建两个文件 interface ICounter { int Get(); } public class Counter : ICounter { int i ; public int Get() { return i++; } } 2.启动时注册 //单例模式 services.AddSin ...
分类:
其他好文 时间:
2020-05-30 12:31:51
阅读次数:
61
原文:Microsoft.AspNetCore.Authentication.Cookies从入门到精通 (一) Microsoft.AspNetCore.Authentication.Cookies从入门到精通 (一) 目录Microsoft.AspNetCore.Authentication.C... ...
分类:
Web程序 时间:
2020-05-29 19:21:32
阅读次数:
79
compose.yml version: "3" services: prometheus: image: prom/prometheus:v2.18.1 ports: - "9090:9090" volumes: - /var/prometheus/etc:/etc/prometheus - /v ...
分类:
其他好文 时间:
2020-05-28 11:37:43
阅读次数:
90
问题描述: 在Grid环境中,如果修改了主机名,启动Grid时会出现如下错误: [grid@sztest ~]$ sqlplus / as sysasm SQL*Plus: Release 12.1.0.2.0 Production on Wed Apr 15 20:42:27 2020 Copyr ...
分类:
数据库 时间:
2020-05-27 20:48:29
阅读次数:
107
https://blog.csdn.net/crper/article/details/81291034 version: '3.6' services: gitlab: container_name: gitlab hostname: '10.9.7.1' image: gitlab/gitlab ...
分类:
其他好文 时间:
2020-05-27 17:11:23
阅读次数:
629
1.首先要找到操作的一张图 2.双击点进去,再点击layers 3.继续点击,进到下面界面 4.随便选取图层以for Classic (with Vector Tile)形式观看,url中即可获得对应的layersID,获取即可 5.代码如下 //添加wms服务 function addWmsLay ...
分类:
其他好文 时间:
2020-05-27 15:03:32
阅读次数:
83
一、什么是SPI SPI ,全称为 Service Provider Interface,是一种服务发现机制。它通过在ClassPath路径下的META-INF/services文件夹查找文件,自动加载文件里所定义的类。 这一机制为很多框架扩展提供了可能,比如在Dubbo、JDBC中都使用到了SPI ...
分类:
编程语言 时间:
2020-05-27 13:39:35
阅读次数:
72