Mert

Results 543 comments of Mert

I added throttling for the seek and it's a lot more responsive now. Not sure if a throttle interval of 200ms is optimal, but it seems fine for now.

I made a few more improvements, particularly with seeking. I'm pretty happy with where it's at for iOS. There's a small issue in that there's no audio in silent mode,...

I'd imagine that fetching albums for the albums page should be at least an order of magnitude faster than that, possibly closer to two. There are a lot of queries...

It most likely means the `embedding` column is missing from the table. You can fix it with a few SQL commands: ``` SET vectors.pgvector_compatibility=on; ALTER TABLE smart_search ADD COLUMN embedding...

What model are you using? You might need to change the 512 value based on the model if it's not default. See [here](https://github.com/immich-app/immich/blob/e9bfe5418a333b7a66671751c815ec891029d2fc/server/src/constants.ts#L95) for the right size for each model....

This release added some missing validation to make config changes more robust. It had a side effect of exposing all the cases where something was wrong 😅

> When running this: > > ``` > > SET vectors.pgvector_compatibility=on; > > ALTER TABLE smart_search ADD COLUMN embedding vector(512); > > CREATE INDEX clip_index ON smart_search > > USING...

`clip_index` being completely missing isn't normal, so it wasn't accounted for. That's something that predates your change to a different model. But it would be nice if it created the...

> Seems based on the number of people running into this, who haven't done anything to mess with their databse it is normal - if not expected. These kinds of...

> Now that you mention restoring from a backup, I always get this kind of error. Not sure if it's related though. I just restore it to test, and even...