using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace Elight.Infrastructure{ publi ...
在LINUX中,周期执行的任务一般由cron这个守护进程来处理[ps -ef|grep cron]。cron读取一个或多个配置文件,这些配置文件中包含了命令行及其调用时间。cron的配置文件称为“crontab”,是“cron table”的简写。 一、cron服务 cron是一个linux下 的定 ...
分类:
系统相关 时间:
2020-04-14 22:39:28
阅读次数:
82
using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.NetworkInformation;using System.Net.Sockets;using Sy ...
公司要求使用 .Net Core + EF Core + Mysql 开发项目,为了以后可以部署到Linux服务器上,实际是奇葩的客户需求。 数据库设计时虽然大部分表的主键都采用了UUID(也就是SQL Server的GUID),好处是啥我也就不(bu)说(hui)了(shuo),大家自行百度下吧。 ...
分类:
数据库 时间:
2020-04-14 18:55:48
阅读次数:
287
.net core附带asp .net core、EF .net core等框架 ...
分类:
Web程序 时间:
2020-04-14 18:50:18
阅读次数:
64
前几天有人想做一个多租户的平台,每个租户一个库,可以进行水平扩展,应用端根据登录信息,切换到不同的租户库 计划用ef core实现,他们说做不出来,需要动态创建dbContext,不好实现 然而这个使用CRL很轻松就能解决了 以下为演示数据库,有两个库testdb和testdb2,查询结果如下 目标 ...
分类:
Web程序 时间:
2020-04-14 12:55:34
阅读次数:
162
where是限制操作符,它将过滤标准应用在序列上,按照提供的逻辑对序列中的数据进行过滤。 where操作符不启动查询的执行。当开始对序列进行遍历时才开始执行,此时过滤条件将被应用到查询中。 //where限制操作符:使用延迟加载 List<int> nums = new List<int> { 1, ...
分类:
其他好文 时间:
2020-04-14 10:35:37
阅读次数:
66
1:解压redis目录到 /usr/local 目录下 2: ps -ef|grep redis 查看有没有redis进程,有的话关闭redis 3:搭建集群准备 (三主三从,伪集群) 3.1 进入 cd /usr/local/ 3.2 mkdir redis_cluster 3.3 cd redi ...
分类:
其他好文 时间:
2020-04-14 10:32:06
阅读次数:
64
这里主要记录一下工作中遇到的一些常用shell1.jenkins部署远程tomcat#/bin/bashexportTOMCAT_HOME_PATH=/usr/local/soft/tomcat-8.5.53cd$TOMCAT_HOME_PATH#停服;pid=`ps-ef|greptomcat|grep-vgrep|awk‘{print$2}‘``kill-9$pid`#备份war包export
分类:
系统相关 时间:
2020-04-13 23:14:01
阅读次数:
129
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace MyPinYin { /// /// 汉字拼音转换类 /// public static class Pin ...
分类:
其他好文 时间:
2020-04-13 00:20:34
阅读次数:
170