top | item 34422537

(no title)

jawr | 3 years ago

It’s serverless

discuss

order

TechnicolorByte|3 years ago

For someone who doesn’t know much about this stuff, what does that mean?

not_kurt_godel|3 years ago

Ignore them, it's unlikely they know what they're talking about at multiple levels

syrrim|3 years ago

Usually that it works via "functions" like aws lambda that don't maintain a long running process, but instead start a new process for every request.

penjelly|3 years ago

my understanding is that in a serverless architecture the dev does not manage the server, there still is one but its managed via third party cloud services who expose basic server or database functions which your app can plug into.

think a "like count" database, it needs to increment and persist. Both very simple, and its implementation is entirely decoupled from the client implementation. Firebase would manage that for you, youd just call firebase functions instead of updating a database yourself.

note: i dont know if this is how tiktok works

europeanguy|3 years ago

It means it has no server.