-
Notifications
You must be signed in to change notification settings - Fork 460
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why aren't databases recommended with PG? #265
Comments
There's no benefit to it and it adds a bunch of maintenance overhead, plus it's not widely used. I've never actually tested this, but I also suspect there would be a performance overhead to establishing a new connection on a per request basis, rather than just switching the |
Actually i tend to disagree, for enterprise setups:
Have you considered this? |
As for different backups schemes, no, I never considered that as I think you probably just want to back up all your data all the time :) |
Sorry, i mean SQL injection attacks indeed. If the database strategy does indeed use "USE" then indeed it's useless. But when when its actually making a new connection to another database. The if im not mistaken you'd be safe, as long as you disallow use, you could Let's say an attacker after a login is able to do an SQL injection attack, then there is no way he could access another one's data if i'm correct. You could use the subdomain as a user for instance. Am i missing something? |
Ya in that case you're correct, we just don't currently have the mechanism for |
Thanks! Ok, at least im not losing my mind Hahah. I'll check that out and if its the same. We'll head on the chat there! Thanks so much for building this! |
my pleasure! |
The readme states that PG databases are not recommended. Why not?
The text was updated successfully, but these errors were encountered: