上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页
摘要: select table_name from information_schema.tables where table_schema = database() and table_name='user' 阅读全文
posted @ 2022-10-09 17:22 翠微 阅读(25) 评论(0) 推荐(0) 编辑
摘要: @RabbitListener(queues = "", concurrency = "4") 使用 concurrency = “4” 可以增加消费者数量为4,及启动一个服务,队列会有4个消费者,从而提升处理能力。 但是消息队列会按顺序给消费者发消息,结果就是优先给同一台机子的消费者发消息,这台机 阅读全文
posted @ 2022-10-08 17:34 翠微 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 【CentOS】定时crontab 依赖一个 crond 服务 systemctl start crond 启动服务systemctl stop crond 停止服务systemctl restart crond 重启服务systemctl reload crond 重载配置文件systemctl 阅读全文
posted @ 2022-09-30 15:09 翠微 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 【Postgres】安装 阅读全文
posted @ 2022-09-23 13:35 翠微 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 半方大的空白 &ensp; &#8194; 全方大的空白 &emsp; &#8195; 不断行的空白格 &nbsp; &#160; < 小于 &lt; &#60; > 大于 &gt; &#62; & &符号 &amp; &#38; " 双引号 &quot; &#34; © 版权 &copy; &#1 阅读全文
posted @ 2022-09-22 13:38 翠微 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 写在一起 import org.springframework.amqp.rabbit.annotation.Exchange; import org.springframework.amqp.rabbit.annotation.Queue; import org.springframework.a 阅读全文
posted @ 2022-09-09 22:57 翠微 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 信创:信息技术应用创新产业 芯片:飞腾、鲲鹏、海光、龙芯、申威、兆芯 操作系统:银河麒麟、中标麒麟、统信软件的 UOS、欧拉OS 数据库:达梦 中间件:东方通TongWeb 网络安全: 应用软件: 存储: 服务器: 阅读全文
posted @ 2022-09-04 10:37 翠微 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】检索文档 阅读全文
posted @ 2022-08-23 15:30 翠微 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 【ElasticSearch】删除文档 删除单个文档 DELETE get-together/_doc/1 根据条件删除文档 POST get-together/_delete_by_query { "query": { "bool": { "must": [ { "term": { "age": 阅读全文
posted @ 2022-08-23 15:29 翠微 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 1、根据ID更新文档 1、根据ID更新文档 rest POST myindex/_update/1 { "doc": { "name": "Smith" } } client // 数据 Map<String, String> data = new HashMap<>(); data.put("na 阅读全文
posted @ 2022-08-23 15:29 翠微 阅读(129) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 35 下一页