André Posso
André Posso
> @Nemo9439 any suggestions? @vlio20 I'm testing a branch with a global configuration object, so we can modify the settings at a global level. EX: ```ts Config.Global.disableCache = true; ```...
> @tripodsgames, I would like to avoid that because of the different configuration options that the different decorators have. Any other suggestions? And a base configuration per decorator? EX: ```ts...
I fixed it in my repo. https://github.com/LzpTec/typescript-rest
> i'm facing the same issue. > @EiZei did you find a solution for this ? > @tripodsgames is there any way to achieve this without actually making changes to...
I'm using [async-injection](https://github.com/pcafstockf/async-injection) instead of this one.
> Think this is caused by usage of decorator in the package. > > The custom decorator is supported by `"@abraham/reflection": "^0.7.0"` - maybe this is crashing something. IDK Have...
At this moment im using this library for PWA: https://github.com/zxing-js/library
> @thegnuu @hellokingdom @tripodsgames Could you point me to a scanner plugin for BarCodes, QR, etc. that has support for Web, Android and iOS? You can this library on native...
> > items are not pro-actively pruned out as they age > > I'm thinking about memory leaks in this case if LRU is used on a server and cache...
Hi, sorry for not replying sooner, I actually wanted to implement a cache that expires, but continues to serve expired data while fetching new data in the background. I think...