Skip to content

Commit 4b1ee62

Browse files
committed
improve profile
1 parent 56530b1 commit 4b1ee62

10 files changed

+101
-6531
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
lib
2+
profile

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ test
33
src
44
hug.vim
55
mini.vim
6+
profile

README.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Install [nodejs](https://nodejs.org/en/download/) and [yarn](https://yarnpkg.com
2727

2828
Install [python-client](https://github.com/neovim/python-client) (used for testing) by:
2929

30-
pip install neovim
30+
pip install pynvim
3131

3232
Start testing service by:
3333

@@ -80,15 +80,21 @@ There're some methods that no clear way to implement for vim:
8080
Some methods requires python support of vim to work, you should either have
8181
`has('python')` or `has('python3')` to `1` with vim.
8282

83-
## Tips
83+
## Performance
8484

85-
- `requestId > 0` for request, use `ch_evalexpr`
86-
- `requestId = 0` for notification, use `ch_sendraw`
87-
- `requestId < 0` for response, send by vim
85+
Here's the performance data on my mac use CPU: 2.6 GHz Intel Core i7
8886

89-
Vim use new line character for the end of JSON text.
87+
Request data from vim:
9088

91-
Avoid use request for vim that not response.
89+
- `1Mb` around 13ms
90+
- `100kb` < 5ms
91+
- `10kb` < 1ms
92+
93+
Request data from server:
94+
95+
- `1Mb` around 53ms
96+
- `100kb` < 7ms
97+
- `10kb` < 2ms
9298

9399
## LICENSE
94100

bin/server.js

+9-13
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const attach = require('neovim').attach
1+
const attach = require('@chemzqm/neovim').attach
22
const logger = require('../lib/logger')('server')
33

44
let nvim
@@ -16,23 +16,19 @@ if (process.env.NVIM_LISTEN_ADDRESS) {
1616
})
1717
}
1818

19-
nvim.on('notification', (method, args) => {
20-
logger.info('notification', method, JSON.stringify(args))
21-
})
22-
23-
nvim.on('request', (method, args, resp) => {
24-
let len = args[0]
25-
let buffer = Buffer.alloc(len, 'a')
26-
resp.send({r: buffer.toString('ascii')})
19+
nvim.on('request', (_method, args, resp) => {
20+
let buffer = Buffer.alloc(args[0], 'a')
21+
resp.send({ r: buffer.toString('ascii') })
2722
})
2823

2924
nvim.channelId.then(async channelId => {
3025
await nvim.setVar('channel_id', channelId)
3126
nvim.command('doautocmd User ServerInit')
3227
await benchMark()
28+
await nvim.call('StartProfile', [])
3329
})
3430

35-
process.on('uncaughtException', function(err) {
31+
process.on('uncaughtException', function (err) {
3632
logger.error('uncaughtException', err.stack)
3733
})
3834

@@ -41,12 +37,12 @@ process.on('unhandledRejection', (reason, p) => {
4137
})
4238

4339
async function benchMark() {
44-
let counts = [10, 100, 1024, 10240]
40+
let counts = [10240, 102400, 1024000]
4541
for (let c of counts) {
4642
let now = Date.now()
47-
for (let i = 0; i < 1000; i++) {
43+
for (let i = 0; i < 100; i++) {
4844
await nvim.call('CreateData', c)
4945
}
50-
logger.info('Cost: ', c, Date.now() - now)
46+
logger.info('Cost: ', c, (Date.now() - now) / 100)
5147
}
5248
}

0 commit comments

Comments
 (0)