Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

MySQL线程池内幕

2017-08-24

在MySQL中,线程池指的是用来管理处理MySQL客户端连接任务的线程的一种机制,我厂用的percona版本已经是集成了线程池,只需要通过如下参数开启即可。 thread_...

MySQL线程池内幕已关闭评论
3,994 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

MySQL高可用数据库内核深度优化的四重定制

2017-08-24

近期我们的数据库团队对原生复制的多个方面进行了深度优化,提升了UDB高可用数据库的功能和性能。今天借社群这个平台,跟大家分享一二。   一、UDB...

MySQL高可用数据库内核深度优化的四重定制已关闭评论
4,176 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

从自身漏洞与架构缺陷,谈Docker安全建设

2017-08-23

与其它介绍Docker的文章不同,本文专注于分析Docker安全。第一部分介绍Docker存在的安全问题、整套Docker应用架构的安全基线以及安全规则,重头戏是Docker安...

从自身漏洞与架构缺陷,谈Docker安全建设已关闭评论
8,312 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

全局在胸:善用性能工具进行SQL整体优化

2017-08-03

SQL优化是一个复杂的工程,首先要讲究从整体到局部。今天我们首先学习关于数据库整体优化都有哪些性能工具,接着分析这些工具的特点,并结合案例进行探索,最...

全局在胸:善用性能工具进行SQL整体优化已关闭评论
4,294 热度


Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

提升PHP程序运行速度的几个优化方案

2017-06-23

经常有人问,为什么同样的PHP程序在其他人的服务器上运行那么快,而在自己的服务器上运行那么慢?其实影响因素很多,这里说下提升PHP运行速度的几个方法。 1...



Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

两千行PHP学习笔记

2017-06-06

/* 启动MySQL */ net start mysql /* 连接与断开服务器 */ mysql -h 地址 -P 端口 -u 用户名 -p 密码 /* 跳过权限验证登录MySQL */ mysqld --skip...



Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

简单十步让你全面理解SQL

2017-06-05

  很多程序员认为SQL是一头难以驯服的野兽。它是为数不多的声明性语言之一,也因为这样,其展示了完全不同于其他的表现形式、命令式语言、 面向对象语言甚...



Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

.Net Framework各个版本区别

2017-05-27

什么是.NET Framework? .NET Framework又称 .Net框架。是由微软开发,一个致力于敏捷软件开发(Agile software development)、快速应用开发(Rapid applica...



Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

Warning: foreach() argument must be of type array|object, string given in /www/wwwroot/stgod/wp-content/themes/akina/archive.php on line 40

每一个C#开发者必须知道的13件事情

2017-05-12

1.开发流程 程序的Bug与瑕疵往往出现于开发流程当中。只要对工具善加利用,就有助于在你发布程序之前便将问题发现,或避开这些问题。 标准化代码书写 标准化...