摘要: 注意:开始此个性化配置前,先确保待配置的用户能正常ftp登录。 1. 修改 vsftpd.conf 文件编辑 /etc/vsftpd/vsftpd.conf 文件,添加或修改 user_config_dir 参数:user_config_dir=/etc/vsftpd/user_conf #表示将用 阅读全文
posted @ 2025-02-11 15:21 enif 阅读(82) 评论(0) 推荐(0)
摘要: const 常量,只能在编译阶段赋值。 readonly 只读,只能在类构造函数中赋值。 static 静态域,在类的所有副本中共用一个对象。 Immutable System.Collections.Immutable,不可变对象,修改后就是一个新对象,原始对象结构数值不变。 阅读全文
posted @ 2025-02-08 16:07 enif 阅读(6) 评论(0) 推荐(0)
摘要: QuestDB数据目录: Windows系统下: 1,直接启动,数据目录在 questdb.exe所在目录下的qdbroot\ 2,questdb install [-d dir], 安装服务时,需指令数据目录, 如果不指定,则默认在c:\windows\system32\下面 阅读全文
posted @ 2024-11-13 09:26 enif 阅读(211) 评论(0) 推荐(0)
摘要: SqlServer中的锁(仅供参考,可能有不准确的地方) - MyMemo - 博客园 (cnblogs.com) 锁模式 | Microsoft Learn 共享锁 (Shared Lock): 表示一个事务正在读取一行数据,其他事务也可以读取同一行数据,但不能进行写操作。也称为 "S锁" 或 " 阅读全文
posted @ 2024-09-18 11:20 enif 阅读(201) 评论(0) 推荐(0)
摘要: MultipleActiveResultSets=true 解决webapi多线程调用webservice单连接的问题,但是会有线程安全问题。 最好还是在webapi中完成所的操作。 已有打开的与此 Command 相关联的 DataReader,必须首先将它关闭 ExecuteScalar 要求已 阅读全文
posted @ 2024-08-30 14:56 enif 阅读(68) 评论(0) 推荐(0)
摘要: 并发控制、更新、版本控制 - SqlSugar 5x - .NET果糖网 (donet5.com) 乐观锁,等待锁,排他锁用法 阅读全文
posted @ 2024-08-28 17:31 enif 阅读(41) 评论(0) 推荐(0)
摘要: public static string JsonBeauty(this string input, bool arrayWrap = false, string indents = " ") { void AppendIndent(StringBuilder sb, int count, stri 阅读全文
posted @ 2024-08-23 16:04 enif 阅读(88) 评论(0) 推荐(0)
摘要: Windows 10 企业版 | Microsoft Evaluation Center https://www.microsoft.com/zh-cn/evalcenter/download-windows-10-enterprise/ 阅读全文
posted @ 2024-08-22 11:12 enif 阅读(748) 评论(0) 推荐(0)
摘要: public static void FuzzyMatch(this ComboBox cmb, IEnumerable<string> list) { var templist = list.Where(x => x.Contains(cmb.Text.Trim())).ToArray(); cm 阅读全文
posted @ 2024-08-15 18:12 enif 阅读(416) 评论(0) 推荐(0)
摘要: select * from ta s left join tb w on s.sd=w.SheetID where s.d between '2024-08-12 13:59:00.000' and '2024-08-17 13:59:00.000' and s.w between 100 and 阅读全文
posted @ 2024-08-15 10:52 enif 阅读(528) 评论(0) 推荐(0)
豫ICP备2021034901号