摘要:
CREATE TABLE T ( [f1] VarCHAR(100), [f2] VarCHAR(100))goINSERT INTO T VALUES ('a','abc')INSERT INTO T VALUES ('a','b')INSERT INTO T VALUES ('b','XX')g... 阅读全文
摘要:
cd /tmp; curl https://www.kernel.org/pub/linux/utils/util-linux/v2.25/util-linux-2.25.tar.gz| tar -zxf-; cd util-linux-2.25;sudo apt-get install autop... 阅读全文
摘要:
占坑 阅读全文
摘要:
Microsoft Open Tech group 在 GitHub上开发了一个REDIS Win64的版本,项目地址是:https://github.com/MSOpenTech/redis
可以在项目主页右边找到 zip包下载地址: https://github.com/MSOpenTech/redis/archive/2.8.zip 阅读全文
摘要:
If you go to the current version and open up the bin > release folder, you'll get a ZIP file containing the relevant files as well as a Word document called RedisService.docx with the following instructions: 阅读全文
摘要:
using System;using System.Globalization;using System.IO;using System.Security.Cryptography;using System.Text;namespace Pub.Class{ public static class EncryptExtensions { private static readonly byte[] AESKeys = {0x41, 0x72, 0x65, 0x79, 0x6F, 0x75, 0x6D, 0x79, 0x53, 0x6E, 0x6F, 0x77, 0x6... 阅读全文
摘要:
Random r = new Random(Guid.NewGuid().GetHashCode()) 阅读全文