不灭的火

加密类型:SHA/AES/RSA下载Go
复合类型:数组(array)、切片(slice)、映射(map)、结构体(struct)、指针(pointer、函数(function)、接口(interface)、通道(channel) Go类型大全

作者:AlbertWen  添加时间:2014-11-17 16:26:20  修改时间:2025-11-13 20:59:28  分类:06.Linux软件安装  编辑

参考文章:Memcached集群/分布式/高可用 及 Magent缓存代理搭建过程 详解,搭建Magent,在编译的过程中会出现很多错误:

执行到 make 的时候,

报错1:

gcc -Wall -g -O2 -I/usr/local/include -m64 -c -o magent.o magent.c
magent.c: In function 'writev_list':
magent.c:729: error: 'SSIZE_MAX' undeclared (first use in this function)
magent.c:729: error: (Each undeclared identifier is reported only once
magent.c:729: error: for each function it appears in.)
make: *** [magent.o] Error 1

作者:AlbertWen  添加时间:2014-03-29 16:29:00  修改时间:2025-11-02 17:29:21  分类:06.Linux软件安装  编辑

网卡eth0    IP修改为 102.168.0.1   

ifconfig eth0 102.168.0.1 netmask 255.255.255.0

作者:AlbertWen  添加时间:2015-12-13 12:42:59  修改时间:2025-11-08 11:32:58  分类:03.MySQL/PgSQL/Redis  编辑

MySQL 5.6 在命令行输入密码,就会提示这些安全警告信息。

Warning: Using a password on the command line interface can be insecure.

作者:AlbertWen  添加时间:2014-10-31 15:53:12  修改时间:2025-11-10 06:06:48  分类:13.C/C++/Rust  编辑

最近在学习C语言,一直想找个好点的开发工具,试用了下 Eclipse for C/C++,NetBeans for C/C++,都不好用。自从接触和使用 PhpStorm,就习惯于JetBrains公司的产品了,包括 PyCharm。

先前去官网看,没看到有关C/C++方面的IDE产品,不过从 2014.09.08 开始,官方推出了一款企业级的跨平台的 C/C++ IDE了,名字叫 CLion

CLion官网:https://www.jetbrains.com/clion

 

作者:AlbertWen  添加时间:2014-10-30 22:45:32  修改时间:2025-11-10 06:26:24  分类:电脑/软件使用  编辑

注意:从Photoshop CS4版本开始,默认没有安装抽出滤镜了!

提供一个下载地址:http://pan.baidu.com/share/link?shareid=3193&uk=19696057

作者:AlbertWen  添加时间:2014-10-28 13:57:48  修改时间:2025-11-10 18:34:18  分类:03.MySQL/PgSQL/Redis  编辑
作者:AlbertWen  添加时间:2015-10-24 09:15:51  修改时间:2025-11-10 20:54:28  分类:13.C/C++/Rust  编辑

Deepin 15.11 编译安装 MySQL-5.6.46 时,报错:

/usr/bin/ld: /usr/local/lib/libssl.a(s23_srvr.o): relocation R_X86_64_PC32 against symbol `ssl23_get_client_hello' can not be used when making a shared object; recompile with -fPIC

作者:AlbertWen  添加时间:2014-10-22 22:58:47  修改时间:2025-11-10 07:38:43  分类:11.PHP基础  编辑

作者:AlbertWen  添加时间:2014-10-22 15:35:01  修改时间:2025-11-11 23:56:18  分类:12.PHP库/系统  编辑

本来想简化 ThinkSNS 系统里面的一个缓存管理函数S(),

结果呢,留下了一个大bug,想通过 S('键名', null); 来删除某个缓存,死活不成功!

通过跟踪,原来 当 $value = null 时,if ($value == '') 匹配成功,即 null == '',所以需要把“等号”改为“恒等号”。即,把 if ($value == '') 改为 if ($value === ''),问题解决。

作者:AlbertWen  添加时间:2019-03-31 11:01:04  修改时间:2025-10-28 08:24:25  分类:15.OpenResty_Lua  编辑

除了 windows 版本是以二进制发行,其他平台由于系统自身的兼容性,推荐的都是源码编译方式。