Hello everyone! Does ktor can help me build self o...
# server
u
Hello everyone! Does ktor can help me build self own server in my computer with real time database? If so, can you send some tutorial or links. Thank you!
c
what's a real time db? and what do you want in term of fucitonality that is not already provided by that db?
j
ktor just handles web requests and delegates the requests to your code. It knows nothing about databases. Your code will have to handle db access on its own (likely with the assistance of some other library)
u
Does ktor can publish your app in own computer or server without relying cloud? if does, please send tutorial or some docs.
j
(Looks like he talks about Firebase Realtime DB)
u
I want to publish my app with my own database and server without relying cloud - just to show or improve my skills. Well, I don't have really the capacity to build server for business but I just want to learn. For job opportunities - and my question is, can ktor make it? If not I hope give me an alternative
c
" if does, please send tutorial or some docs." lol
🤣 1
j
I'm surprised the barrier to finding this slack isn't higher than the barrier to finding the answers to some of the questions asked here
😁 3
u
Can someone answer my question?
j
z
you may have to use a local DB and push db updates to clients using websockets.