Hi!
Im using the InMemoryStorage and i need to cleanup de jobs every 1 hour, but it seems not work, after 1 hour the jobs remains, and the memory consuption in the server dont reduce at all.
I can use WithJobExpirationTimeout with the InMemoryStorage connection?
services.AddHangfire(x => x.UseSimpleAssemblyNameTypeSerializer()
.UseRecommendedSerializerSettings()
.UseInMemoryStorage()
.WithJobExpirationTimeout(TimeSpan.FromHours(1)));
Thanks!