Hi, I have a question about scope. How does closin...
# koin
b
Hi, I have a question about scope. How does closing a scope work with JVM garbage collector? Should we always call
scope.close()
whenever we don’t need the scope instance? (I’m new to Koin)
a
yes you need to close a scope when you don’y need it anymore. It will let the garbage collection run on it
b
thanks!