missing word
In the best practices guide, can someone clarify what’s meant here? I think there’s a missing word
If someone needs to make changes to the frontend of an an app or website that uses they can run it against the production deployment by setting an environment variable, without ever needing to run the Convex CLI tool.https://docs.convex.dev/production/best-practices/...
Another question about Convex caching,
Another question about Convex caching, this time related to the built-in caching of queries on the back end. Say I run a given query multiple times in relatively quick succession; e.g. I'm flipping between routes in my Remix app, and each route runs a different query. The data isn't changing between route changes, so the later queries return cached data.
How do those cached query returns impact my bandwidth stats? In other words, if Convex returns cached data for a query, does that still count towards my bandwidth, or is the bandwidth only affected when a query returns non-cached data?...
Multiple projects for a single app
Hey guys, I'm developing app for multiplayer game with convex and react, my app will be have more than 10 games, and each game will be have different gameplay , interaction, database, maybe some game have chat features.
My question :
1. Am I need to create separate database for user management, social / friends feature, and for each games interactions?
2. Can we use 2 projects / database on single apps? ...
Something's still not clicking. Can you
Something's still not clicking. Can you give some examples where caching would be a detriment due to the problems you listed?
```
Validator<Record<string, any>, "required", any>): TableDefinition<Validator<Record<string, any>, "required", any>, {}, {}, {}>', gave the following error.
Object literal may only specify known properties, and 'firstName' does not exist in type 'Validator<Record<string, any>, "required", any>'.
Validator<Record<string, any>, "required", any>): TableDefinition<Validator<Record<string, any>, "required", any>, {}, {}, {}>', gave the following error.
Object literal may only specify known properties, and 'firstName' does not exist in type 'Validator<Record<string, any>, "required", any>'.
Hey all, I found out about Convex 2 days
Hey all, I found out about Convex 2 days ago and I haven't eaten since then
thank you!! im migrating from prisma, i
thank you!! im migrating from prisma, i had this enum Status {
DRAFT
PUBLISHED
ARCHIVED
}...
Is there an option to use another
Is there an option to use another database provider like postgres but with convex functions?
Hey everyone, first post so go easy if
Hey everyone, first post so go easy if this is the wrong place to start a convo like this... however I'm in an odd place where I have a small but growing database of motorsports data that I have been slowly building up as a passion project over the years, but its in a highly dated and very basic LAMP stack that started in 2009 and has been held together with parcel tape and dreams ever since...
I want to finally use the data to create a public web app (maybe phone app?) and I want to use it as a ground up learning exp but be 'modern' and i KNOW convex is the right starting point! I found it purely by chance and it seems ideal the more I read.. but I honestly dont know where to start when it comes to the rest of the stack or even the approach with migrating the mysql/php horrorshow over!?
can anyone point me in the direction of a stack you think might suit? a tutorial/guide/101 setup for something vaguely similar?...
queues
Hello! Sorry for the newbie question. Just researching to see if convex does everything I need. Could I please ask: what is the equivalent of queues in Convex? In a traditional application, if I want to ensure something happens, I put the message on a retry queue. If I wanted queue within my application, would I have to use a third party solution like AWS SQS? Read docs and couldn’t find anything on this.
What is the most efficent way to
What is the most efficent way to retrieve the last N (say, 5) number of records from a table when querying it?
Trupeer | AI-Powered Product Videos & Do...
I don’t have the exact solution that you are looking for, but here is a similar one - https://trupeer.ai
I used this for my hackathon submission explanation video and it worked really well...
Is it possible to subscribe from a
Is it possible to subscribe from a webpage to a single record without being able to access anything else?
succeeded selfhosting convex in hetzner
succeeded selfhosting convex in hetzner vps with custom domains and behind a caddy reverse proxy
can put up a guide if anyone is interested...
My app needs client generated ids. To
My app needs client generated ids. To prevent between-user clashes I need to either generate an id like
<user-id>-<uuid>
or have the db record store the user id as well as the generated id. In the first case the index part of the query would be q.eq('clientId', '<user-id>-<uuid>')
, and in the second q.eq('userId', '<user-id>').eq('clientId', '<uuid>')
. Are there any significant performance considerations either way?Log
So it seems is either to use another field that will be most of the time the same value are creationTIme but used for my manual imports
or try to import my messages, then export them and then change creationtime and import again 😆...