ausgerechnet / spheroscope

web app for argumentation mining
GNU General Public License v3.0
7 stars 1 forks source link

pagination for query results #50

Open ausgerechnet opened 2 years ago

ausgerechnet commented 2 years ago

if there are many (several thousand) query results, the result table takes forever for loading. this should be handled by reasonable pagination, preferably completely by the frontend (so I don't have to deal with it)

mgttlinger commented 2 years ago

In the current architecture, this is difficult to impossible as the backend renders the HTML and the frontend simply embeds it into the page. Doing pagination in the backend wouldn't reduce the load time and the frontend can't really do it. There might be possibilities to use streaming but I have little knowledge in that field.