I have Asp Core .NET that using 10 Realm Instances.
All ok on MacBook local server, but when I deploy on Azure, I can open only 4 Realm any time and app run great.
When I open Realm N.5 I obtain a server timeout.
I have already set:
var root = Path.GetTempPath();
SyncConfigurationBase.Initialize(UserPersistenceMode.NotEncrypted, basePath: root);
Too many open files? How I can close a Realm in .NET. I have try a User.Logout any time but I have always same error.
Thanks
Luigi