Franck Desfrançais
Franck Desfrançais
One year and still no reply... that's insane...
I'm not an expert, but one potential workaround could be to run a Python script that preloads the model into RAM before starting ComfyUI. Note that if you're using RunPod...
Your approach to serverless seems a bit incorrect. The principle of serverless is to provide an on-demand solution for requests and request surges. There's no need to scale your GPUs...
I agree that having an index.ts would actually be really convenient—it would cover some edge cases where you don’t want to create a separate sub-path. As for the rest, I’m...
Another concern is Convex's current limitations when it comes to filtering and indexing arrays. While it's possible to define nested objects and arrays of IDs, you **can't filter directly on...
Here is an example of my ``mutations`` and ``queries`` ```ts import { v } from "convex/values"; import { internalMutation } from "../../_generated/server"; import { serverMutation, userMutation } from "../../procedures"; import...
One of the main concerns is how aggressively cache invalidation is handled. Given a table shape like: ```ts export const workspaces = defineTable({ name: v.string(), userIds: v.array(v.id('users')), }) ``` If...
So just to confirm — this query will still be **invalidated** when updating the project `status`, even though I'm **not retrieving** the `status` field at all? ```ts import { defineTable...
I made a [post](https://discord.com/channels/1019350475847499849/1374166494019059822/1374166494019059822) in the community Discord to better highlight the caching system issues. Without any mutations — just by waiting a few minutes — the cache stops working.
@ikhare I also shared screenshot of the ``refreshSession`` being triggered more than once an hour 🤔.  Also, as you can see it creates thousands of refresh tokens for no...