摘要:
select table_name from information_schema.tables where table_schema = database() and table_name='user' 阅读全文
摘要:
@RabbitListener(queues = "", concurrency = "4") 使用 concurrency = “4” 可以增加消费者数量为4,及启动一个服务,队列会有4个消费者,从而提升处理能力。 但是消息队列会按顺序给消费者发消息,结果就是优先给同一台机子的消费者发消息,这台机 阅读全文
摘要:
【CentOS】定时crontab 依赖一个 crond 服务 systemctl start crond 启动服务systemctl stop crond 停止服务systemctl restart crond 重启服务systemctl reload crond 重载配置文件systemctl 阅读全文
摘要:
半方大的空白     全方大的空白     不断行的空白格   < 小于 < < > 大于 > > & &符号 & & " 双引号 " " © 版权 ©  阅读全文
摘要:
写在一起 import org.springframework.amqp.rabbit.annotation.Exchange; import org.springframework.amqp.rabbit.annotation.Queue; import org.springframework.a 阅读全文
摘要:
信创:信息技术应用创新产业 芯片:飞腾、鲲鹏、海光、龙芯、申威、兆芯 操作系统:银河麒麟、中标麒麟、统信软件的 UOS、欧拉OS 数据库:达梦 中间件:东方通TongWeb 网络安全: 应用软件: 存储: 服务器: 阅读全文
摘要:
【ElasticSearch】检索文档 阅读全文
摘要:
【ElasticSearch】删除文档 删除单个文档 DELETE get-together/_doc/1 根据条件删除文档 POST get-together/_delete_by_query { "query": { "bool": { "must": [ { "term": { "age": 阅读全文
摘要:
1、根据ID更新文档 1、根据ID更新文档 rest POST myindex/_update/1 { "doc": { "name": "Smith" } } client // 数据 Map<String, String> data = new HashMap<>(); data.put("na 阅读全文