timeCache.go】的更多相关文章

package blog4go import ( "sync" "time" ) const ( // PrefixTimeFormat  时间格式前缀 PrefixTimeFormat = "[2006/01/02:15:04:05]" // DateFormat 时间格式 DateFormat = "2006-01-02" ) // timeFormatCacheType是一个时间格式的缓存 type timeFormat…
与前面的文章 zabbix监控nginx-rtmp status(html版)区别只在于取值的页面不一样 http://127.0.0.1:81/control/get/all_streams stat状态值详解 name:application名 static_pulls:从编码器拉流模式 pushes:编码器推流模式 { name:流名字 audio_bitrate:音频码流 video_bitrate:视频码流 active:1(流up)0(流down) } stream.py  # 先判…
nginx-rtmp开启stats # nginx(--add-module=nginx-rtmp-module-master) nginx.conf: server { listen ; location /stat { rtmp_stat all; } } http://127.0.0.1:81/stat stat状态值详解 codec: 编码 bits/s: 码流 size: 分辨率 fps: 每秒传输帧数 freq: 音频频率 chan: 声道数 定义zabbix监控item key v…
using System; using System.Collections.Generic; using System.Web; using System.Collections; using System.Web.Caching; namespace DMSite.Common { /// <summary> /// 服务器缓存帮助类 /// </summary> public class CacheHelper { /// <summary> /// 创建缓存项的…
ASP.NET MVC 中给我们提供了内置的过滤器,通过过滤器,我们可以在控制器内的方法前后,添加必须的业务逻辑,如权限验证,身份验证,错误处理等. 今天,我们主要介绍3个过滤器:OutputCacheAttribute,AuthorizeAttribute,HandleErrorAttribute. 我们会根据这三个内置过滤器,分别举不同的例子进行解释说明. 1. OutputCacheAttribute 我们先看看源码: 可以看出OutputCacheAttribute继承了ActionFi…
一看名字就知道是围绕eventloop转的. 那首先肯定是eventloop是个什么?一般都是IO事件,timer事件的管理器. 那首先看如何new出来一个eventloop: 1.因为libevent是跨平台的,在不同平台上会有不同的配置,首先读配置: struct event_config { TAILQ_HEAD(event_configq, event_config_entry) entries; int n_cpus_hint; enum event_method_feature re…
package blog4go import ( "fmt" "os" "sync" "time" ) const ( // unit of sizes _ = iota // ignore first value by assigning to blank identifier // KB unit of kilobyte KB int64 = 1 << (10 * iota) // MB unit of meg…
package blog4go import ( "bufio" "errors" "fmt" "io" "os" "strings" "sync" ) const ( // EOL end of a line EOL = '\n' // ESCAPE escape character ESCAPE = '\\' // PLACEHOLDER placeholder…
package blog4go import ( "bytes" "fmt" "net" "sync" ) // SocketWriter 是一个socket日志结构体 type SocketWriter struct { level LevelType  //日志级别 closed bool   //链接是否关闭 // log hook hook      Hook  //回调函数 hookLevel LevelType  …
1.读取XML文件 /// <summary> /// 读取XML配置文件类 /// </summary> public class XmlHelper { private string strXmlPath = ""; //Xml文档路径 private XmlDocument xmlDoc; //XML文档 /// <summary> /// 初始化ReadXml类 /// </summary> /// <param name=…