Skip to main content

Questions tagged [architecture]

Architecture encompasses the process, artifacts and high-level structure of a solution.

0 votes
0 answers
21 views

Designing a multiple async/await system that is error resilient and retry capable within a multi iteration loop

I am designing a system in nodejs where I am handling 1000s of rows of user data. Each row of data will have a multiple async/await call chain to a third party endpoint, where response at each step is ...
user3812230's user avatar
0 votes
0 answers
21 views

How to manage connected users in a multi-server C# socket console application?

I have a C# console based application deployed on ubuntu servers (3 instances at the moment). I have redis server which has a SET for keeping all connected user ids (ulong). I have logic in place to ...
AG-Satbir's user avatar
0 votes
1 answer
18 views

How to create rich models without depending on infrastructure? (Database or external services)

I'm grappling with a challenge in domain-driven design (DDD) regarding achieving a Rich Model. In complex systems, it often feels nearly impossible to execute most business rules without access to ...
Julian Gr's user avatar
  • 113
0 votes
0 answers
32 views

Network policy - Kubernetes [closed]

The back-end is deployed in K8s and the Front End is a mobile application. I would like to isolate the communication between the Back-end and the Front-end. And after some research, I discovered that ...
H Mirindra's user avatar
-1 votes
0 answers
27 views

good practice for branching off of a project while still getting some of the new features built onto it

I have a project A, that does something very similar to project B. for example imagine project A does ticket listing for cinema, and now I want to branch off of it and create a separate project with ...
mpower's user avatar
  • 203
0 votes
0 answers
24 views

Asynchronous communication between 2 QThreads

I'm working on optimizing a PyQt application (to control tensile testing machine) that's sometimes slow. The application uses two QThreads, both running in a loop with time.sleep inside. One QThread (...
Vittor's user avatar
  • 9
-3 votes
0 answers
11 views

How is the structure of the github workspace organized? [closed]

i want to know the real architecture of git. Does it really have 4 or 5 ingredients? Those components are: workspace, staging area, local repository, remote repository (5th component: does branch ...
Hoang Dong's user avatar
-1 votes
1 answer
24 views

Difference between a collection and a store in the context of REST API [closed]

What is the exact difference between a collection resource archetype and a store resource archetype in the context of REST API, I have been reading this book called REST API Design Rulebook and not ...
Venu Madhav Reddy Vanga's user avatar
0 votes
2 answers
59 views

Actix-Web + Tonic gRPC proper integration

I have a web server in actix-web and recently I built a different C++ server. I decided to implement gRPC as a communication bridge between the 2. But I don't know how to integrate actix web + tonic (...
Chris Kay's user avatar
-4 votes
0 answers
28 views

LSTM Network Architecture

dear community. I am programming an lstm network with regression on pythoin-e under the PyTorch framework The description is available at the link https://pytorch.org/docs/stable/generated/torch.nn....
Pawlovsky Felix's user avatar
1 vote
1 answer
25 views

Handling Multiple Actors in a Use Case in Clean Architecture and DDD

I am doing an API for a blog site using Clean Architecture and DDD. I find myself doing a use case to get all comments for a requested article. The thing is that anonymous users can see the comments ...
Dany Nuñez's user avatar
2 votes
2 answers
47 views
+100

Clean Architecture Dependency Graph (Multi module)

When it comes to the Clean Architecture Dependency graph I see two version: The recommended one by Google: presentation -> domain -> data The other: presentation -> domain <- data What ...
No_Name's user avatar
  • 54
0 votes
0 answers
31 views

How to implement Model View Presenter in Android Java?

// Presenter interface public interface MainPresenter { void loadData(); } // View interface public interface MainView { void showData(String data); void showError(String message); } // ...
AMIT MAJHI's user avatar
-1 votes
0 answers
32 views

Challenges with microservice design which involves multiple http get calls to external systems

We have a monolithic application which need to be converted into microservices using microservice architecture. Requirements: The application makes 4 http get calls to external systems which are ...
Tanmoy Banerjee's user avatar
0 votes
0 answers
104 views

Is this the correct use case for a Rc in rust? [closed]

I'm writing a card game in rust and I'm not quite sure if the way I'm architecting this portion of the app makes sense- and if it does make sense, I'm not sure I'm using the right tool (Rc) for the ...
Andrew Luhring's user avatar

15 30 50 per page
1
2 3 4 5
1150