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

Binding cache discussion #1320

Closed
notaphplover opened this issue Apr 30, 2021 · 6 comments
Closed

Binding cache discussion #1320

notaphplover opened this issue Apr 30, 2021 · 6 comments
Assignees

Comments

@notaphplover
Copy link
Member

As @tonyhallett commented, after #1132 is merged, a binding may have a promise to a service cached instead of a service.

Binding.cache type could be fixed to T | Promise<T> | null and I think it would be a good fix, but maybe we could improve the behavior.

As inversify user, I could expect to get a service syncronously if the binding is under a singleton scope and the resolution promise is already fullfilled. Even if the resolution is async, once the promise is fullfilled there is no reason to avoid accessing the cached value in a syncronous way. But there's a problem: if the service activation is asyncronous, we are caching a Promise. Maybe we should update the binding once the promise is resolved, that way users could access services syncronously.

@tonyhallett what are your thoughts about this?

@tonyhallett
Copy link
Contributor

Maybe we should update the binding once the promise is resolved, that way users could access services syncronously.

Seems sound. Leave it up to the dev to decide but how do you know it is safe to get without waiting on the promise ?

If you can think of a use case where it is guaranteed to be resolved for subsequent requests for the service and avoiding promises is essential then sure.

@notaphplover
Copy link
Member Author

Seems sound. Leave it up to the dev to decide but how do you know it is safe to get without waiting on the promise ?

Sometimes there's no way to know it, sometimes the use case allows the user to know it:

Consider the bootstrap of an HTTP server. Consider MongoDb as the database and mongodb as the driver chosen. I probably want to inject a MongoClient on singleton scope.

Consider the bindings are established at the very beginning of the bootstrap process. At this point we could be binding the client in this way:

import { Container } from 'inversify';
import { MongoClient } from 'mongodb';
 
export const mongoClientSymbol = Symbol('MongoClient'); 
export const container = new Container();
container.bind(mongoClientSymbol).toDynamicValue(MongoClient.connect(mongoDbConnectionUri)).inSingletonScope();

On this scenario we could know for sure the connection is established before any repository uses this client (as an example, we could be waiting for it before requesting the HTTP server to serve our endpoints).

On this scenario, the repository could safely @inject the MongoClient and later be instatiated calling container.get because we know for sure the promise should be fullfilled before any repository instance is instantiated. With the current behavior there is no way to this because the cache would contain a fullfilled promise of MongoClient instead of a MongoClient

If you can think of a use case where it is guaranteed to be resolved for subsequent requests for the service and avoiding promises is essential then sure.

I wouldn't say it's essential, but the developer experience is way better since we allow the user to use a syncronous context if he decides it and it's possible.

What are your thoughts about this @inversify/maintainers ?

@tonyhallett
Copy link
Contributor

tonyhallett commented Apr 30, 2021

@notaphplover I say go for it ! It is a great idea

@tonyhallett
Copy link
Contributor

If you are changing binding.cache then implementationType can be changed too
implementationType: T | Newable<T> | null;

@notaphplover notaphplover self-assigned this May 2, 2021
@notaphplover notaphplover mentioned this issue May 2, 2021
11 tasks
@leonardssh
Copy link
Member

I think this issue can be closed. #1328

@parisholley
Copy link
Contributor

i know this comment is way too late, though I stumbled across this while researching a change i'm going to propose. as the origin async author, the enforcement of throwing a LAZY error was very intentional. if you allow developers to choose when to pull a dependency based on implicit environment state, you are going to introduce regression risk if in the future the behavior of how that dependency is built changes (imagine implementing middleware, conditional onactivation hooks, etc). imagine having a huge chunk of your code path done in a synchronous way only to find out you will have to rip all out and make it async.

IMO, if you are writing code that expects the mongo connection to always be up and available, you should bootstrap mongo first and inject in the container and not rely on async at all.

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

No branches or pull requests

4 participants