摘要:
来源:http://edu.jb51.net/redis/redis-data-types.htmlRedis支持五种数据类型:string(字符串),hash(哈希),list(列表),set(集合)及zset(sorted set:有序集合)。1、Stringstring是redis最基本的类型 阅读全文
摘要:
最新资源2022-07-01RabbitMQ下载链接:https://pan.baidu.com/s/1VBbH40EvY46jNRdiKYhFuw 提取码:bcuq 版本 rabbitmq-server-3.10.5.exeErLang下载链接:https://pan.baidu.com/s/14 阅读全文
摘要:
1:系统拆分,将一个系统拆分为多个子系统,微服务架构。2:缓存。使用Redis分布式缓存,大部分的高并发场景,都是读多写少,可以在数据库和缓存里都写一份,读的时候走缓存。redis轻轻松松单机几万的并发。可以考虑那些承载主要请求读场景,怎么用缓存来抗高并发。3:MQ(消息队列)。可能你还是会出现高并 阅读全文
摘要:
参考:https://www.cnblogs.com/atomy/p/12784361.htmlDapper存储过程:http://t.zoukankan.com/mengshi-p-4784640.html using Dapper; using System.Collections.Generi 阅读全文
摘要:
ASP.NET Core gRPC(Google Remote Procedure Call)介绍:https://zhuanlan.zhihu.com/p/411315625参考:http://t.zoukankan.com/lhwpc-p-15157339.html文档:http://doc.o 阅读全文
摘要:
1、在sql语句前使用explain关键字,查看执行情况。2、正确的建立索引3、在子查询当中,尽量用exists代替in:select a.id from tbl_glw_customer_order_transport a where exists(select 1 from tbl_glw_cu 阅读全文
摘要:
FOR XML PATH(''):将查询结果集以XML形式展现。1、select top 1 opr_id,user_id from dbo.tracking_log FOR XML PATH('oprs')返回结果xml: <oprs> <opr_id>100</opr_id> <user_id> 阅读全文
摘要:
旧了,最新版本的看这个文章吧:https://www.cnblogs.com/xsj1989/p/18338930官网:https://sentinelguard.io/zh-cn/index.html注解支持:https://github.com/alibaba/Sentinel/wiki/%E6 阅读全文
摘要:
官网:https://nacos.io/zh-cn/1、下载:https://github.com/alibaba/nacos/releases/tag/1.4.3,windows版的是:nacos-server-1.4.3.zip,官网下载慢,网盘下载链接:https://pan.baidu.co 阅读全文
摘要:
一、idea配置显示Run Dashboard在项目的根目录找 .idea文件夹,找到workspace.xml打开找到<component name="RunDashboard"> 在这个节点下增加配置 <option name="configurationTypes"> <set> <optio 阅读全文