in order to solve the memory leak at #5146

Large encoded string take a very long time to to release from memory, but if we just pass the stream directly into json.load we get much better memory performance.
This commit is contained in:
imdark 2017-05-17 11:49:30 -07:00 committed by GitHub
parent 1ca5a9d042
commit 3a2ad8e68c

View File

@ -22,6 +22,7 @@ from django.utils.six.moves.urllib import parse as urlparse
from rest_framework import renderers
from rest_framework.exceptions import ParseError
import codecs
class DataAndFiles(object):
@ -61,8 +62,8 @@ class JSONParser(BaseParser):
encoding = parser_context.get('encoding', settings.DEFAULT_CHARSET)
try:
data = stream.read().decode(encoding)
return json.loads(data)
decoded_stream = codecs.decode(stream, encoding)
return json.load(decoded_stream)
except ValueError as exc:
raise ParseError('JSON parse error - %s' % six.text_type(exc))