大约有 4,000 项符合查询结果(耗时:0.0160秒) [XML]

https://bbs.tsingfun.com/thread-515-1-1.html 

关于php的socket初探 - PHP - 清泛IT论坛,有思想、有深度

本帖最后由 天空一直巨响 于 2015-09-20 11:35 编辑 做好几年的flash的aser,技术一直停留在flash这个狭小的容器内,最近转向php,才慢慢体会到之前充实技术开发前的那段极度渴望去学习新知识的那种动力,可能在大多数的人眼...
https://www.tsingfun.com/it/tech/1055.html 

Nginx缓存解决方案:SRCache - 更多技术 - 清泛网 - 专注C/C++及内核技术

...天帮别人优化PHP程序,搞得灰头土脸,最后黔驴技穷开启FastCGI Cache,算是勉强应付过去吧。不过FastCGI Cache不支持分布式缓存...前些天帮别人优化PHP程序,搞得灰头土脸,最后黔驴技穷开启FastCGI Cache,算是勉强应付过去...
https://www.tsingfun.com/it/tech/1332.html 

OpenSSH升级后不能登录的问题 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...爆出很多安全漏洞,客户那边搞安全检查,扫描结果出来,漏洞基本都是在openssh上面于是打算升级升...升级OPENSSH 遇到头疼的问题 Openssh 爆出很多安全漏洞,客户那边搞安全检查,扫描结果出来,漏洞基本都是在openssh上...
https://www.tsingfun.com/it/cpp/1373.html 

C++中智能指针的设计和使用 - C/C++ - 清泛网 - 专注C/C++及内核技术

...指针,U_Ptr为计数器;里面有个变量use和指针ip,use记录*ip对象被多少个HasPtr对象所指。假设现在又两个HasPtr对象p1、p2指向U_Ptr,那么现在我delete p1,use变量将自减1, U_Ptr不会析构,那么U_Ptr指向的对象也不会析构,那么p2...
https://www.tsingfun.com/it/te... 

【最全】CSS响应式布局的5种实现方式 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...得到这几种不同屏幕下对应的 html 根元素的 font-size 大小。 屏幕尺寸 html 中 font-size 大小 (1rem 大小) 750px 75px 640px 64px 480px 48px ...
https://www.tsingfun.com/it/tech/1251.html 

linux svn搭建配置及svn命令详解 - 更多技术 - 清泛网 - 专注C/C++及内核技术

...源代码的一定也会出现混乱的情况,版本管理系统就是为解决这些问题。 SVN中的一些概念 : a. repository(源代码库) 源代码统一存放的地方。 b. Checkout (提取) 当你手上没有源代码的时候,你需要从repository checko...
https://stackoverflow.com/ques... 

What is the difference between a reference type and value type in c#?

...of mine from a different forum, about two years ago. While the language is vb.net (as opposed to C#), the Value Type vs. Reference type concepts are uniform throughout .net, and the examples still hold. It is also important to remember that within .net, ALL types technically derive from the base t...
https://www.tsingfun.com/it/te... 

从一个开发的角度看负载均衡和LVS - 更多技术 - 清泛网 - 专注C/C++及内核技术

...上LVS的机器代替真实的服务器与用户通过TCP三次握手建立连接,所以LVS是需要关心「连接」级别的状态的。 LVS的工作模式主要有4种: DR NAT TUNNEL Full-NAT 这里挑选常用的DR、NAT、Full-NAT来简单介绍一下。 1、D...
https://www.tsingfun.com/it/tech/660.html 

Windbg Step 2 分析程序堆栈实战 - 更多技术 - 清泛网 - 专注C/C++及内核技术

... argv = 0x000d1b90 result = 0n0 6. dv(display variables) 切换函数以后,下一步就是查看变量的值,使用dv命令来查看变量信息,这个命令相当于Visual Studio里面的局部变量(locals)窗口。 7. kM .frame的方式比较复杂,因此windbg提供...
https://stackoverflow.com/ques... 

How can you use an object's property in a double-quoted string?

...rmatting". Since Powershell is inextricably bound to .NET for which C# and VB.NET are the primary programming languages, the terms "string interpolation" and "interpolated string" (and anything similar) should be applied only to the new $ prepended strings found in those languages (C# 6 and VB.NET 1...