We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現状はkdemoを使っている. fldemo-backendに実装したほうが良い.
kgpをどう起動するかで2案
プロセスより速い. kgp.jarが不要.
kgpが吐くlogを取るのが難しい. kgpはlogbackで標準出力にログを吐く. backendも同様. 標準出力にログが混ざる.
さらに,kgpは複数プロセス同時に起動できるべき. 複数起動されたkgpのログをスレッド別に取る必要がある.
kgpの出力を取るのが楽. kgpがスレッドセーフかを気にする必要がない.
重い. kgp.jarが必要.
The text was updated successfully, but these errors were encountered:
How to log multiple threads in different log files? https://stackoverflow.com/questions/8355847/
Sorry, something went wrong.
No branches or pull requests
現状はkdemoを使っている.
fldemo-backendに実装したほうが良い.
実装案
kgpをどう起動するかで2案
A. スレッド
pros.
プロセスより速い.
kgp.jarが不要.
cons.
kgpが吐くlogを取るのが難しい.
kgpはlogbackで標準出力にログを吐く.
backendも同様.
標準出力にログが混ざる.
さらに,kgpは複数プロセス同時に起動できるべき.
複数起動されたkgpのログをスレッド別に取る必要がある.
B. プロセス
pros.
kgpの出力を取るのが楽.
kgpがスレッドセーフかを気にする必要がない.
cons.
重い.
kgp.jarが必要.
The text was updated successfully, but these errors were encountered: