Lucian Mocanu
Lucian Mocanu
> heya typeorm maintainers, i work on expo and just wanted to reach out to offer help on this if there's anything you need! Hey @brentvatne, for sure! Help with...
Version 0.5.0 of librespot was just released, it has quite a lot of changes, see https://github.com/librespot-org/librespot/releases/tag/v0.5.0
I prefer the solution from #339 since it relies even more on TypeORM than this one.
Closing this one since #339 is a nicer solution
> Cache class is missing in cache manager in version 6 - What is the injectable class that i should use? ```ts import { type Cache, CACHE_MANAGER } from '@nestjs/cache-manager'...
> Or if we still using the type 'Cache' from cache-manager, @Inject(CACHE_MANAGER) is necessary @zhuxb711 types are removed when transpiling from TS to JS, so they won't exist at runtime....
| DB | Vector (4-byte) | Half Vector (2-byte) | Binary Vector | Sparse Vector | Docs | |----------|------------------------|----------------------|-----------------------|-------------------------------|----------------------------------------------------------------------------------------------------------------------| | MariaDB | `VECTOR(n)` | | | | https://mariadb.com/docs/server/reference/sql-structure/vectors/create-table-with-vectors | |...
Yes, I used `BLOB` as fallback for `REAL_VECTOR` if it's not supported, but `BLOB` doesn't allow a `length` option, while `REAL_VECTOR` does, so validation fails. I will remove the fallback...
It's definitely a bug (there's no breaking change in this PR), I was just thinking a bit more about the exception handling :) The `BeforeQuery` listeners can throw, in which...
> 2\. Put `connect()` and `broadcast('BeforeQuery')` outside the try/catch and accept that AfterQuery subscribers will no longer trigger for connection errors Exactly. This is what I am suggesting above. This...