欢迎访问我的独立博客
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 67 下一页
摘要: 配置远 程连接PostgreSQL数据库的步骤很简单,只需要修改data目录下的pg_hba.conf和postgresql.conf。 pg_hba.conf:配置对数据库的访问权限, postgresql.conf:配置PostgreSQL数据库服务器的相应的参数。 修改pg_hba.conf文 阅读全文
posted @ 2018-04-17 14:04 github.com/starRTC 阅读(252) 评论(0) 推荐(0) 编辑
摘要: yum install php-pgsql “conf/config.inc.php”) $conf['servers'][0]['host'] = 'localhost'; and $conf['extra_login_security'] is false. http://phppgadmin. 阅读全文
posted @ 2018-04-17 10:52 github.com/starRTC 阅读(205) 评论(0) 推荐(0) 编辑
摘要: PostgreSQL 在视频、图片去重,图像搜索业务中的应用 图片搜索 PostgreSQL的图像搜索插件使用了非常主流的Haar wavelet技术对图像进行变换后存储 gist 索引方法(支持pattern和signature类型), 以及KNN操作符,可以用于搜索相似度 1,建立图片表 cre 阅读全文
posted @ 2018-04-13 17:53 github.com/starRTC 阅读(498) 评论(0) 推荐(0) 编辑
摘要: 默认端口:5432 创建用户与数据库 PostgreSQL初次安装后,默认会生成一个名为postgres的数据库和一个名为postgres的数据库用户。这里需要注意的是,同时还生成了一个名为postgres的Linux系统用户。 下面,我们使用postgres用户,来生成其他用户和新数据库。 首先, 阅读全文
posted @ 2018-04-12 11:31 github.com/starRTC 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 关键词:centos install PostgreSQL Configure YUM repositoryvim /etc/yum.repos.d/CentOS-Base.repo [base] and [updates] sections添加:exclude=postgresql* Instal 阅读全文
posted @ 2018-04-12 10:37 github.com/starRTC 阅读(545) 评论(0) 推荐(0) 编辑
摘要: 多人同时上麦说话 主播正常开始直播,普通观众看到主播的单人直播画面; 需要连麦的观众发起连麦请求,进入连麦申请列表; 主播从连麦申请列表中选择一名或多名观众进行连麦操作,主播与连麦观众进行实时音视频互动,同时互动直播系统生成“合成画面”; 普通观众看到直播画面为包含主播与连麦观众的“合成画面”; 为 阅读全文
posted @ 2018-02-07 16:59 github.com/starRTC 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 功能 IM消息系统 一对一 高清音视频实时通信,可无缝切换P2P传输,节省服务器带宽 一对多互动直播 多对多在线会议 手机实时录屏传输 高度定制化 网络检测,动态码率与动态帧率,抗网络抖动,微信级效果 自适应智能回音消除 为物联网而生 性价比全网最高, 成本全网最低! 支持区块链集成! 兼容webr 阅读全文
posted @ 2018-02-07 11:56 github.com/starRTC 阅读(3106) 评论(5) 推荐(0) 编辑
摘要: JSON转换库为 encoding/json 把对象转换为JSON的方法(函数)为 json.Marshal(),其函数原型如下 func Marshal(v interface{}) ([]byte, error) 也就是说,这个函数接收任意类型的数据 v,并转换为字节数组类型,返回值就是我们想要 阅读全文
posted @ 2018-02-07 11:53 github.com/starRTC 阅读(815) 评论(0) 推荐(0) 编辑
摘要: https://github.com/danharper/hmac-examples 94 func generateSign(data, key []byte) string { 95 mac := hmac.New(sha1.New, key) 96 mac.Write(data) 97 exp 阅读全文
posted @ 2018-02-07 11:52 github.com/starRTC 阅读(697) 评论(0) 推荐(0) 编辑
摘要: Download and install it: $ go get github.com/gin-gonic/gin Import it in your code: import "github.com/gin-gonic/gin" (Optional) Import net/http. This 阅读全文
posted @ 2018-02-07 11:50 github.com/starRTC 阅读(311) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 67 下一页