Daniel15 / simple-nuget-server

A very simple PHP NuGet server
MIT License
116 stars 43 forks source link

Add pagination to the searchPackages function #35

Closed dixong closed 5 years ago

dixong commented 5 years ago

Added pagination to the searchPackages function by adding LIMIT and OFFSET to the database call. This stops clients from receiving a list of all packages when calling the search and, certainly within Visual Studio, just causing the list to keep repeating as the user scrolls down.

This is a fix for issue #27

Daniel15 commented 5 years ago

Thanks!