摘要:
Jexus以支持ASP.NET、Core、php在Linux上运行为特色,能够支持ASP.NET的原理,就是在Linux上安装了Mono(跨平台.NET运行环境),进而支持ASP.NET程序的运行。 官网:Jexus Web Server 官网 独立版(专业版)自带Mono环境,省去了自己在Linu 阅读全文
摘要:
调用接口,分批方法: double num = Math.Ceiling((double)views.Count / (double)pageSize); List<List<TViewModel>> list = new List<List<TViewModel>>(); for (int i = 阅读全文
摘要:
select/update where id in(上万个元素)的优化方案: 优化前: selectselect docId from tab1 where word in (select word from tab1 where docId=123) group by docId limit 10 阅读全文
摘要:
mysql 用户授权: 1.创建用户:create user 'user1'@'100.%' identified by 'pwd' //创建用户并无权限 2.授权:grant all privileges on *.* TO 'user1'@'100.%' with grant option; / 阅读全文