Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make registerLazySingletonAsync have a dependsOn #339

Open
feinstein opened this issue Aug 17, 2023 · 7 comments
Open

Make registerLazySingletonAsync have a dependsOn #339

feinstein opened this issue Aug 17, 2023 · 7 comments
Labels
enhancement New feature or request

Comments

@feinstein
Copy link

registerLazySingletonAsync doesn't have a dependsOn, so we can't deal with more complex cases, where we want a lazy singleton, to avoid memory leaks, and also depend on another async singleton.

@escamoteur
Copy link
Collaborator

please explain to me how lazy singletons prevent memory leeaks

@feinstein
Copy link
Author

If I have a big app, with 100 Singletons, then if I don't use lazy Singleton factories, they will all be created as soon as the app starts. Many of those Singletons might only be useful on some parts of the app, parts that the user might not even use. With lazy singletons only the Singletons that are requested will be created and live in memory, thus reducing the memory footprint.

@escamoteur
Copy link
Collaborator

escamoteur commented Aug 17, 2023 via email

@feinstein
Copy link
Author

That is true, but IMHO you take 1000s of Dart objects to get into memory troubles. Images are always the problem, not simple objects.

Yeah, but how do you know those singletons will always be simple objects? IMHO get_it is a lib for locating services, creating objects, it's up to the user to choose what the objects look like, get_it wasn't made just for simple objects.

You agree with me that it can happen, you gave me examples when this is possible to happen, so why not make get_it better support those scenarios? This is a very popular library, used by many different apps, specially very big ones, that are the ones facing this problem. Saying that get_it shouldn't be used for scenarios where we have 1000s of objects if the same as saying that get_it is only recommended for small and simple apps, which I don't think it's the case.

@escamoteur
Copy link
Collaborator

you also have to keep in mind, that I maintain several packages as the sole maintainer in my spare time. So I have to focus on feature requests that help a large group of my users and you are the first one since this package exists (and it's one of the oldest on pub) so it really doesn't seem to be a problem for the majority of my users.
if this issue get more likes I will consider it but it's not a trivial change

@escamoteur escamoteur added the enhancement New feature or request label Aug 18, 2023
@feinstein
Copy link
Author

I think that's a fair point and I agree with you, my suggestion should not be dismissed based on personal opinions, but on technical matter, and should be implemented on a priority basis.

@sebastianbuechler
Copy link

First, I want to say I really like the package and appreciate the work that is put into packages like get_it. Thanks!

Second, I would also appreciate such an enhancement. For my use-case, it's mainly that some singletons should be started in a specific order (which I can do with regular singletons and async ones, but not lazy singletons or even lazy async singletons) where they only work properly if some others are already setup (classic dependencies are API services, storage services and so on). In order to not overload everything on startup it would be nice to have the lazy loading feature in that situation as well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

3 participants