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
This wrapper caches Ships/other data the first time they're requested, for example: GetShip, GetShipByEnglishName, GetAllChapters, ...
You can also cache the data asynchronously or reload it by using the ReloadXAsync methods or even cache everything with ReloadEverythingAsync.
You can disable caching by changing EnableCaching in the AzurAPIClientOptions you're using with your AzurAPIClient to false, but this will probably cost you a lot of performance.
like this:
varClient=newAzurAPIClient(newAzurAPIClientOptions(){EnableCaching=false});// this will cache the ships even though EnableCaching is set to falseClient.ReloadShipsAsync();