dmlc / ps-lite

A lightweight parameter server interface

Home Page:http://ps-lite.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KVServer is single threaded?

zhangyafeikimi opened this issue · comments

As I observed, there is only one working thread in ps, and request handles including KVServerDefaultHandle need not to be thread safe.
The result is that ps-lite can't leverage all CPU cores.

May I have a multi-thread server?

commented

you can use multiple threads in the handle function

Got it, thanks a lot.