One day before starting Free Weekend...
before_optimizations
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
-Pay attention to the lifestyle of your components.
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
-Pay attention to the lifestyle of your components.
-Avoid doing extra requests to get something that you have already. Check if you can use IoC factories to resolve a component and can reuse it in several places.
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
-Pay attention to the lifestyle of your components.
-Avoid doing extra requests to get something that you have already. Check if you can use IoC factories to resolve a component and can reuse it in several places.
-CDN is great.
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
-Pay attention to the lifestyle of your components.
-Avoid doing extra requests to get something that you have already. Check if you can use IoC factories to resolve a component and can reuse it in several places.
-CDN is great.
-ViewModels are to display, don't use it to run some BL or get some functionality done.
Some Learnings
-Don't use singleton just to avoid having to instantiate a class or interface.
-Pay attention to the lifestyle of your components.
-Avoid doing extra requests to get something that you have already. Check if you can use IoC factories to resolve a component and can reuse it in several places.
-CDN is great.
-ViewModels are to display, don't use it to run some BL or get some functionality done.
-Remember separation of concerns and responsibility of different parts of the application: SAFE vs FMP vs SAPI. Check with people that have the domain knowledge before doing the changes.