上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 60 下一页
  2022年7月4日
摘要: 来源:http://edu.jb51.net/redis/redis-data-types.htmlRedis支持五种数据类型:string(字符串),hash(哈希),list(列表),set(集合)及zset(sorted set:有序集合)。1、Stringstring是redis最基本的类型 阅读全文
posted @ 2022-07-04 10:56 邢帅杰 阅读(143) 评论(0) 推荐(0) 编辑
  2022年6月30日
摘要: 最新资源2022-07-01RabbitMQ下载链接:https://pan.baidu.com/s/1VBbH40EvY46jNRdiKYhFuw 提取码:bcuq 版本 rabbitmq-server-3.10.5.exeErLang下载链接:https://pan.baidu.com/s/14 阅读全文
posted @ 2022-06-30 14:01 邢帅杰 阅读(700) 评论(0) 推荐(0) 编辑
  2022年6月23日
摘要: 1:系统拆分,将一个系统拆分为多个子系统,微服务架构。2:缓存。使用Redis分布式缓存,大部分的高并发场景,都是读多写少,可以在数据库和缓存里都写一份,读的时候走缓存。redis轻轻松松单机几万的并发。可以考虑那些承载主要请求读场景,怎么用缓存来抗高并发。3:MQ(消息队列)。可能你还是会出现高并 阅读全文
posted @ 2022-06-23 15:33 邢帅杰 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/atomy/p/12784361.htmlDapper存储过程:http://t.zoukankan.com/mengshi-p-4784640.html using Dapper; using System.Collections.Generi 阅读全文
posted @ 2022-06-23 13:22 邢帅杰 阅读(67) 评论(0) 推荐(0) 编辑
  2022年6月15日
摘要: 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 阅读全文
posted @ 2022-06-15 16:25 邢帅杰 阅读(139) 评论(0) 推荐(0) 编辑
  2022年6月14日
摘要: 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 阅读全文
posted @ 2022-06-14 14:08 邢帅杰 阅读(76) 评论(0) 推荐(0) 编辑
  2022年6月10日
摘要: 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> 阅读全文
posted @ 2022-06-10 15:06 邢帅杰 阅读(242) 评论(0) 推荐(0) 编辑
  2022年3月29日
摘要: 旧了,最新版本的看这个文章吧:https://www.cnblogs.com/xsj1989/p/18338930官网:https://sentinelguard.io/zh-cn/index.html注解支持:https://github.com/alibaba/Sentinel/wiki/%E6 阅读全文
posted @ 2022-03-29 16:42 邢帅杰 阅读(1714) 评论(0) 推荐(0) 编辑
  2022年3月15日
摘要: 官网: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 阅读全文
posted @ 2022-03-15 10:52 邢帅杰 阅读(1589) 评论(0) 推荐(0) 编辑
  2022年3月14日
摘要: 一、idea配置显示Run Dashboard在项目的根目录找 .idea文件夹,找到workspace.xml打开找到<component name="RunDashboard"> 在这个节点下增加配置 <option name="configurationTypes"> <set> <optio 阅读全文
posted @ 2022-03-14 15:22 邢帅杰 阅读(91) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 60 下一页