上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 26 下一页
摘要: NETCORE - ElasticSearch 搜索服务 相关文档地址 Elasticsearch文档:https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html Elasticsearch.Net和Nest官 阅读全文
posted @ 2022-10-08 17:01 无心々菜 阅读(373) 评论(0) 推荐(0) 编辑
摘要: Windows - 部署 Elasticsearch Elasticsearch 是一个基于 Lucene 的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于 RESTful web 接口。Elasticsearch 是用 Java 语言开发的,并作为 Apache 许可条款下的开放源码 阅读全文
posted @ 2022-09-22 14:08 无心々菜 阅读(960) 评论(0) 推荐(0) 编辑
摘要: windows 部署 traefik 反向代理 1. 下载 traefik : https://github.com/traefik/traefik/releases 文件下载并解压后: 解压后traefik目录下包括traefik.exe文件,在该目录下建立两个文件分别为traefik.toml和 阅读全文
posted @ 2022-09-19 16:30 无心々菜 阅读(961) 评论(0) 推荐(0) 编辑
摘要: windows 部署 nginx 一. nginx 安装部署启动 1. 下载 nginx http://nginx.org/en/download.html 选择稳定版 下载解压后 在nginx的配置文件是conf目录下的nginx.conf,默认配置的nginx监听的端口为80,如果本地电脑的80 阅读全文
posted @ 2022-09-16 15:04 无心々菜 阅读(925) 评论(0) 推荐(0) 编辑
摘要: 微服务 - 框架流程图 阅读全文
posted @ 2022-09-05 11:01 无心々菜 阅读(82) 评论(0) 推荐(1) 编辑
摘要: VUE - install 方式插件的使用 1. 创建 VUE 项目 vue create vueplug 项目初始化结构 2. 创建 modules 文件夹,用于存放自定义插件 3. 在 modules 中创建 插件文件:Cmponent.vue <template> <div>组件</div> 阅读全文
posted @ 2022-08-23 14:19 无心々菜 阅读(341) 评论(0) 推荐(0) 编辑
摘要: mysql 之 my.ini 配置 1. max_allowed_packet 配置 在 mysqld 节点下添加,配置MySQL允许的最大数据包大小,下面的500M你可以根据你的项目修改为你自己的值,只要比要导入的备份文件大就可以了。 (未配置有可能报错:MySQL出现“Lost connecti 阅读全文
posted @ 2022-08-17 10:59 无心々菜 阅读(1138) 评论(0) 推荐(0) 编辑
摘要: VUE - DIV拖动边框调整宽度 父页面: <template> <div class="m-body" > </div> </template> <style lang="less" scoped> .m-body { position: relative; } </style> 子页面: <t 阅读全文
posted @ 2022-08-03 11:05 无心々菜 阅读(781) 评论(0) 推荐(0) 编辑
摘要: NETCORE - IHostedService定时任务的使用 项目环境,net core 3.1 + webapi 安装依赖: Microsoft.Extensions.Hosting.Abstractions 1. 在startup.cs中注册 // .Net 6 builder.Service 阅读全文
posted @ 2022-07-13 18:54 无心々菜 阅读(156) 评论(0) 推荐(0) 编辑
摘要: mysql 外键约束的情况下删除表数据 数据库在有外键约束的情况下,删除不掉数据,解决方案 数据库中查看外键是否有效 SELECT@@foreign_key_checks; 外键状态默认为有效(1) 设置外键状态为无效(0) SET FOREIGN_KEY_CHECKS=0; 删除表所有数据,使用t 阅读全文
posted @ 2022-07-13 15:39 无心々菜 阅读(677) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 26 下一页