最新 最热

[Go] GO语言实战-实现标题闪烁

因为聊天框是被iframe框进去的页面,所以在聊天框中收到websocket消息以后要把消息发送给父集页面,在父页面中闪烁标题

2020-07-29
1

spring boot 使用websocket

依赖<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId></dependency>配置@Configurationpubli...

2020-07-10
0

[vuejs] 在vuejs中使用websocket进行实时通讯

在vuejs框架中使用websocket , 可以比较方便的运用到vuejs框架的响应式系统 , 以及一些简单的生命周期函数

2020-06-10
0

day119-Flask的websocket使用

# 着重注意前段 websocket 实例的函数内作用域问题1.websocket之群聊1.1后端代码import jsonfrom pprint import pprintfrom flask import Flask, requestfrom geventwebsocket.handler impor......

2020-04-26
0

[HTML] websocket的模拟日志监控界面

模拟命令行的界面效果,使用swoole作为websocket的服务,重新做了下html的界面效果

2020-01-14
0

python websocket模拟客户

##注意要安装 pip install websocket-clientfrom websocket import create_connectionws = create_connection("ws://127.0.0.1:9002")ws.send("Hello, World")##发送消息result ...

2020-01-09
0

[Go] 实现websocket服务端

如果在这个目录没有这个包就去github下载net库,放进这个目录$GOPATH/src/golang.org/x/net就行了

2019-12-19
0

springboot整合websocket实现消息推送

maven依赖<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xm

2019-12-07
0

ssl配置websocket

location /wsendpoint{    proxy_pass http://127.0.0.1/wsendpoint;  #实际ws服务器地址    proxy_http_version 1.1;    proxy_set_header Upgrade $http_upgrade;    proxy_...

2019-12-07
0

基于消息总线的高可扩展性IM系统后台架构设计

如果你还不了解IM系统的整体结构,可以先看看《一个海量在线用户即时通讯系统(IM)的完整设计》(一下简称《IM完整设计》)这篇文章。

2019-10-23
1