Questions tagged [server]
It refers to client-server model, where providers of a resource or service is called Server.
268 questions
3
votes
2
answers
425
views
Why do database protocols use fixed endianness instead of native server endianness?
Most database wire protocols mandate a specific byte order for multi-byte integers:
PostgreSQL: big-endian (network byte order)
MySQL: little-endian
MongoDB: little-endian (BSON format)
OracleDB: ...
0
votes
2
answers
406
views
How to implement a server application that can reload configuration without restart
I have a game server implemented in Python to which clients can connect and play against each other.
I'd like to be able to reload configuration from a config file without restarting the server (as ...
0
votes
3
answers
275
views
Architecture for downloading large number of large images
I am running a website for a customer who has terrabytes worth of images. Each JPG image is high-res (20MB) and belongs to a hierarchy like this:
Group A
SubGroup 1
subsubgroup a
...
0
votes
1
answer
176
views
Is there any way to have an android or iOS app expose a web-api?
I want to develop a miminal app for iOS and Android.
Basically, I want to have a widget (or similar micro-app) that displays how many items I have in a list. If I open the widget, it just opens a ...
-1
votes
1
answer
128
views
How can I simplify deploying game server on hosting
I'm an online game developer.
I've written my game server using c++ on visual studio on windows 10 OS.
My hosting machine is run on CentOS 8.
Every time I make a change on server, I transfer all the ...
-2
votes
1
answer
1k
views
bare-metal server vs cloud server vs on-prem server?
I am trying to understand the difference between bare-metal servers and cloud servers. I am referring to the following document,blog.
I understand that Amazon EC2(which is all the rage) is an example ...
-3
votes
1
answer
130
views
Backend VPS requirement estimate
I have an idea for a mobile app, but As I'm not from a Software background, I need to know how much the backend operations will cost before I commit time and resources to develop this idea. In this ...
2
votes
1
answer
520
views
What really is a "web server" in relation to popular frameworks like Flask, Node.js, Apache?
In Flask you can run a "webserver". Well really it's a "WSGI Server". Well really you shouldn't be using core server features like serving files through HTTP at all, you should be ...
2
votes
3
answers
618
views
Are there downsides of two TCP connections for bidirectional communication?
I have a server which maintains some shares state.
The clients can send some requests and get an answer from the server.
Sometimes the server needs to give some information to the client ...
1
vote
3
answers
505
views
frontend server obtain data from backend server, or frontend server return page with javascript that obtain data from backend server?
I'm currently learning how to separate frontend server and backend server. However, i'm not sure which approach should i take between the two
Frontend server obtain data from backend server and ...
1
vote
2
answers
4k
views
How to represent the absent of a field value in json response?
I am a react developer and writing the client on pure JS. I have sometimes missions to received data from server and send data to server. Now between the client team and backend rough discussion ...
0
votes
0
answers
45
views
Enabling file editing on a file stored on a server through custom routes and POST/GET Requests
I am creating a platform which allows multiple users to edit a file simultaneously and I was wondering if using a web server with routes could be the correct architecture for this goal. I am trying to ...
0
votes
1
answer
91
views
Handling IO operations through a server and building the UI using a separate framework/application
I am trying to build a file editor, and I wanted to build the UI using Flutter. However I wanted to implement IO operations (reading a file, applying changes, etc) in Rust.
The reason I would like to ...
2
votes
4
answers
752
views
Multiplayer FPS Architecture
I'm creating a multiplayer game and have been having some trouble creating a good architecture for the server side.
So far on the server we store a list of player which are the actively connected ...
3
votes
1
answer
567
views
Scaling up an online game using SignalR
I'm developing a web game that currently all runs on one server. It uses SignalR to maintain connections between the server and clients, and the server also sends all the web stuff to clients (HTML/...