Knowledge of your passwords
Uh... What password?
Knowledge of your passwords
Uh... What password?
I kinda hate the push towards passkeys. If you have two factor Auth, going to passkeys makes you go back to 1 factor, aka less secured.
There's also more and more 2FA fatigue attacks going on, and they can affect passkeys too, and if you don't have a 2FA that involves the user writing a code on the 2FA device, passkeys could be quite possibly worse than passwords
TBH I thought it was for refactoring type safety. Making sure that the type is understood and not ready to just change wildly accidentally.
I do love rust. But I do like making fun of it too.
Although I don't see how rust is immature? Unless I missed the joke?
I don't get it either. OP might be angry at compile time (Couldn't be worse than rust)
With a 7 day week for those fixing it's mistakes
Boo! How dare you do blackface!
(Obligatory /j)
This is also part of my death, because it's much easier to not deadlock when you are FIFO.
Personally I went for the nuclear option, and any transaction is sent as a tokio task to make sure the transaction keeps getting polled despite other futures getting polled. Coupled with a generous busy timeout timer (60secs) and Wal mode, it works pretty well.
Probably should also put the mutex strategy (perhaps a tokio semaphore instead?) although due to lifetimes it might be hard to make a begin()
function on my DB pool wrapper.
... Congratulations. You nerd snipped me. Time for it to go on the todo stack.
Hyped for it too, but wouldn't use until sqlx suport. Compile time checked queries are just so good. I don't use rustsqlite for that reason alone (you often don't need async SQLite anyways)
Tbh trigger performance isn't that much of a concern unless you need to write lots of data, which most usage don't need.
Also try check statements instead or even re-evaluate your schema to prevent them if you really need to.
Personally my death would be multiple write transaction deadlocks. Sadly it doesn't play that well with async code, like with sqlx (rust).
I 100% agree... If you don't need portable databases. For those, everybody like SQLite (even if it can be annoying sometimes)
I'm sorry- uh... Everything?
And for those of us who don't? Need source please...