Fatih Cetinkaya
Fatih Cetinkaya
> Do you know if using the certificate will speed the initial connection up? It's pretty fast for me. I didn't test it without certificate.
See https://github.com/salesforce/LAVIS/issues/231#issuecomment-1547156558
For Apple Silicon try (https://github.com/georgia-tech-db/eva-decord): ```diff diff --git a/requirements.txt b/requirements.txt index 247190d..05a3e7d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ contexttimer -decord +eva-decord einops>=0.4.1 fairscale==0.4.4 ftfy ``` and build...
Sorry for not being more specific. I was talking about `{LEFT,RIGHT,FULL} [OUTER] JOIN` for example; ``` SELECT product.key, category.name, condition.name FROM product LEFT JOIN category ON category.key = product.catkey LEFT...
fyi - currently I'm using temporary tables in a transaction block. Basically joining tables one by one and it's little bit extra work.
Yes I tired the way you tired and it didn't worked. I thought it wasn't supported. That's why I'm joining them one by one by creating temporary tables. Unfortunately I'm...
@gernest : After this issue (as well as some other performance issues) I gave up this package and decided to use `go-sqlite3` package . The only annoying thing with `go-sqlite3`...
@marvinhagemeister @fro-profesional : Do you mind sharing how to use `--parallel` in Fresh 2.x?
@marvinhagemeister: Thank you for your quick reply. I assume `fetch` does the trick, right? Is there a discussion/PR you could point out? I'm just curious the implementation details. That's all....