Skip to content

Commit

Permalink
increase chunk size for id requests
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickbr committed Sep 26, 2024
1 parent 1debf64 commit c5db0ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qlever-petrimaps/GeomCache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ void GeomCache::requestIdPart(size_t offset) {
char errbuf[CURL_ERROR_SIZE];

if (_curl) {
auto qUrl = queryUrl(getQuery(_backendUrl), offset, 1000000);
auto qUrl = queryUrl(getQuery(_backendUrl), offset, 100000000);
curl_easy_setopt(_curl, CURLOPT_URL, qUrl.c_str());
curl_easy_setopt(_curl, CURLOPT_WRITEFUNCTION, GeomCache::writeCbIds);
curl_easy_setopt(_curl, CURLOPT_WRITEDATA, this);
Expand Down

0 comments on commit c5db0ef

Please sign in to comment.