Poll Helper
Polling your server for new information on the current page is common, so Inertia provides a poll helper designed to help reduce the amount of boilerplate code. In addition, the poll helper will automatically stop polling when the page is unmounted. The only required argument is the polling interval in milliseconds.router.reload options as the second parameter.
stop and start methods that allow you to manually start and stop polling. You can pass the autoStart: false option to the poll helper to prevent it from automatically starting polling when the component is mounted.
Throttling
By default, the poll helper will throttle requests by 90% when the browser tab is in the background. If you’d like to disable this behavior, you can pass thekeepAlive option to the poll helper.