摘要: /// <summary> /// 发起GET同步请求 /// </summary> /// <param name="url"></param> /// <param name="headers"></param> /// <param name="contentType"></param> // 阅读全文
posted @ 2022-12-02 19:08 方金 阅读(1007) 评论(0) 推荐(0) 编辑
摘要: 1 IF OBJECT_ID (N'dbo.RegexMatch') IS NOT NULL 2 DROP FUNCTION dbo.RegexMatch 3 GO 4 ALTER FUNCTION dbo.RegexMatch 5 ( 6 @pattern VARCHAR(2000), 7 @ma 阅读全文
posted @ 2021-03-26 15:09 方金 阅读(1173) 评论(0) 推荐(0) 编辑
摘要: GET visit_log_template-2021.01/_search { "size": 0, "query": { "bool": { "must": [{ "range": { "Date": { "gte": "2021-01-11 00:00", "lte":"2021-01-17 阅读全文
posted @ 2021-02-03 11:21 方金 阅读(1586) 评论(0) 推荐(0) 编辑
摘要: 1,准备linux虚拟机环境(CentOS 7)本次安装用的是ELK7.2.0的版本(版本一定要一致) 2,先在linux安装java环境 //查找安装列表 yum -y list java* //安装 yum install java-1.8.0-openjdk.x86_64 //完成安装后验证 阅读全文
posted @ 2020-07-17 17:28 方金 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 1,讲分词器的文件夹放入es安装包的plugins,重新启动elasticsearch //查询es运行中的进程pid ps -aux|grep elasticsearch //杀死进程 kill -9 pid //使用es账户启动 nohup ./elasticsearch & 2,重启es,然后 阅读全文
posted @ 2020-07-17 15:03 方金 阅读(242) 评论(0) 推荐(0) 编辑
摘要: git rm -r -n --cached "bin/" //-n:加上这个参数,执行命令时,是不会删除任何文件,而是展示此命令要删除的文件列表预览。 git rm -r --cached "bin/" //最终执行命令. git commit -m" remove bin folder all f 阅读全文
posted @ 2020-07-14 15:21 方金 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 1,在Nuget引入MongoDB.Driver 2,新建 MongoDbHelper.cs using MongoDB.Bson; using MongoDB.Driver; using System; using System.Collections.Generic; using System. 阅读全文
posted @ 2020-07-14 09:29 方金 阅读(662) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 发起POST同步请求 /// /// </summary> /// <param name="url"></param> /// <param name="postData"></param> /// <param name="contentType">application/xml、application/json、application/text、appli 阅读全文
posted @ 2020-01-09 16:29 方金 阅读(4667) 评论(0) 推荐(1) 编辑
摘要: 该插件后端使用ASP.NET MVC实现图片存储 该插件适用于需要固定显示缩略图片的文章列表! 演示地址:http://hhcf.top:8099/Cropper/Index 源码下载:https://download.csdn.net/download/qq_32943629/11175347 阅读全文
posted @ 2019-05-13 11:55 方金 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 演示网站: 版本1:http://hhcf.top:8190/mvc/WebUpload/Index 版本2:http://hhcf.top:8190/core/ 源码:https://download.csdn.net/download/qq_32943629/11109914 阅读全文
posted @ 2018-12-28 18:09 方金 阅读(1249) 评论(0) 推荐(0) 编辑