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
views.py
@expose('/to_save') def to_save(self): POST01 = request.POST.copy() self._to_save_sub() def _to_save_sub(self): POST02 = request.POST.copy()
程式碼是以上這樣。 以每秒 POST 10 筆不同數據的方式做測試, 在同一線程(Thread-1) POST01 得到的數據和 POST02 得到的數據有機會是不同的數據。
這會有什麼解決方法?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
views.py
程式碼是以上這樣。
以每秒 POST 10 筆不同數據的方式做測試, 在同一線程(Thread-1) POST01 得到的數據和 POST02 得到的數據有機會是不同的數據。
這會有什麼解決方法?
The text was updated successfully, but these errors were encountered: