Skip to content

Conversation

kavigupta
Copy link

Issue type
  • Bugfix

The code hangs when accessing a large query (e.g., all parks in California). This is because the code as written repeatedly adds to a string in a loop. This is (1) not necessary, since you can just run f.read() and (2) unnecessarily slow, as it requires reallocation and copying of the entire string. See, e.g., this amazon style guide for more details.

Summary

I replaced a block of code

            response = f.read(self.read_chunk_size)
            while True:
                data = f.read(self.read_chunk_size)
                if len(data) == 0:
                    break
                response = response + data

with the line

response = f.read()

This is equivalent

Frankkkkk added a commit to Frankkkkk/python-overpy that referenced this pull request May 6, 2024
There is no need to support chunks in python3 as the `read()` interface
does that for us. Furthermore, this improves fetch performance in large
queries (c.f. DinoTools#111).

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
Frankkkkk added a commit to Frankkkkk/python-overpy that referenced this pull request May 7, 2024
There is no need to support chunks in python3 as the `read()` interface
does that for us. Furthermore, this improves fetch performance in large
queries (c.f. DinoTools#111).

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant