-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
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
辞書が壊れてエンジンが起動しなくなる #623 の解決 #624
Merged
The head ref may contain hidden characters: "\u8F9E\u66F8\u5468\u308A\u3092mutex\u306B"
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
何回かバグ報告頂いてたので、ついでにrelease-0.14のhotfixとして導入したいと思います。rebaseします |
Hiroshiba
force-pushed
the
辞書周りをmutexに
branch
from
February 21, 2023 13:07
1541212
to
7ae56c6
Compare
うーん! with mutex_openjtalk_dict:
shutil.move(tmp_dict_path, compiled_dict_path) でパーミッションエラーが出ました。 関数全体をLockしてしまえば動作したのでとりあえず緊急的にそうしてみましたが、根本的解決ではない気がします。 |
windowsでのGit Bashで単語を同時登録するコマンドメモ surface="test"
pronunciation="テスト"
accent_type="1"
echo -n $pronunciation >text.txt
for i in {1..10}; do
curl -s -X POST "localhost:50021/user_dict_word" \
--get \
--data-urlencode "surface=$surface$1" \
--data-urlencode "[email protected]" \
--data-urlencode "accent_type=$accent_type" &
done
wait |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
内容
辞書周りにLockを2つ導入します。
user_dict.jsonの排他制御と、pyopenjtalkによる読み込みの排他制御です。
関連 Issue
close #623
その他
テスト用コマンド