摘要: 一,go-playground/validator官方代码地址 https://github.com/go-playground/validator 二,安装 $ go get -u github.com/go-playground/validator/v10 go: downloading git 阅读全文
posted @ 2024-11-30 11:10 刘宏缔的架构森林 阅读(346) 评论(0) 推荐(0)
摘要: 一,创建索引 CREATE FULLTEXT INDEX ft_content ON table_name (content) WITH PARSER ngram; 表名和字段可以用``表示引用 说明:创建全文索引时,如果不添加WITH PARSER ngram;有可能会检索不到结果 二,测试: 1 阅读全文
posted @ 2024-11-30 10:49 刘宏缔的架构森林 阅读(143) 评论(0) 推荐(0)
摘要: 一,代码 1,全局文件: // 日志消息结构体 type LogMessage struct { Level string Message string } //通道 var LogChan chan LogMessage //日志文件句柄 var GlobalLogFile *os.File // 阅读全文
posted @ 2024-11-30 10:48 刘宏缔的架构森林 阅读(83) 评论(0) 推荐(0)