Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
G
getty
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wei.xuan
getty
Commits
0cc6334b
Commit
0cc6334b
authored
Nov 01, 2016
by
alexstocks
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
delete todo list
parent
99e149d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
28 deletions
+0
-28
todo.list.md
todo.list.md
+0
-28
No files found.
todo.list.md
deleted
100644 → 0
View file @
99e149d1
# todo list #
---
-
1 session.go:Session中的rQ & wQ 均是channel实现,其本质是bounded queue,会导致读写阻塞
如果想让write更快一点,可以使用list作为wQ的二级队列(或者称之为优先级队列),以存放优先级比较高的且不能丢弃(在wQ full的情况下)的pkg;
-
2 codec.go:(EventListener)OnMessage其实可以一次处理多个session.go:Session{rQ}的多个包,如:
const MAX = 32
for {
select {
case inPkg = <-this.rQ:
if flag {
var pkgArray
[]
interface{}
pkgArray = append(pkgArray, inPkg)
Read:
for i := 0; i < MAX; i++ {
case inPkg = <-this.rQ:
pkgArray = append(pkgArray, inPkg)
default:
break Read
}
this.listener.OnMessages(this, pkgArray)
this.incReadPkgCount(len(pkgArray))
} else {
log.Info("
[
session.handleLoop
]
drop readin package{%#v}", inPkg)
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment