memcachier / memjs

A memcache client for node using the binary protocol and SASL authentication
MIT License
197 stars 52 forks source link

Memory leak #92

Closed sheerun closed 7 years ago

sheerun commented 7 years ago

I get following error when trying to get/set values with memjs, especially on frequent calls:

(node:82222) Warning: Possible EventEmitter memory leak detected. 11 timeout listeners added. Use emitter.setMaxListeners() to increase limit
zaguiini commented 7 years ago

+1

alevy commented 7 years ago

That's not totally impossible under expected operation. If you have frequent calls that might accumulate before previous calls are done, the emitter queue could build up.

Which versions are each of you (@sheerun, @zaguini) using?

zaguiini commented 7 years ago

Was an error in my configuration. Fixed.

alevy commented 7 years ago

@zaguini is there anything about the configuration error that might be useful to others to know about?