You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VaaS provides a GUI form and API endpoint that enables purging resources from varnish servers.
Each of the above methods allows purging a single resource per call. Obviously, that approach is highly ineffective when it comes to purging massive amounts of resources. Moreover, the API endpoint does not meet REST best practices. Calling complex commands in the context of the cluster is a good example of a command pattern. Best practices on how to implement this pattern can be found here.
Expected behavior:
Expose GUI form for batch purging.
Expose API endpoint for batch purging accordingly to command pattern
The text was updated successfully, but these errors were encountered:
Description
VaaS provides a GUI form and API endpoint that enables purging resources from varnish servers.
Each of the above methods allows purging a single resource per call. Obviously, that approach is highly ineffective when it comes to purging massive amounts of resources. Moreover, the API endpoint does not meet REST best practices. Calling complex commands in the context of the cluster is a good example of a command pattern. Best practices on how to implement this pattern can be found here.
Expected behavior:
The text was updated successfully, but these errors were encountered: