Skip to main content

Questions tagged [architecture]

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

-1 votes
0 answers
17 views

How to Balance SRP and DRY Principles?

I'm reading Clean Architecture book by Uncle Bob. According to the Single Responsibility Principle (SRP), a module should be responsible to only one actor. However, I'm concerned that this might lead ...
mehdi.loa's user avatar
  • 573
-1 votes
1 answer
34 views

"Microservices Using Database Per Service" pattern in practice

I am working on a project where I would like to use this pattern. I have read for days, but I am still not sure how to implement this pattern properly and keep the multiple DBs in sync. Let's suppose ...
zappee's user avatar
  • 21.9k
-2 votes
0 answers
37 views

Java JNI: Issues with Loading Dependent Dynamic Libraries Using loadLibraryFromJar and C++ System Functions Returning Empty Values [duplicate]

Java JNI calls a C++ dynamic library using loadLibraryFromJar, and this dynamic library depends on other dynamic libraries. When I place the dependent dynamic libraries in the system path, /usr/lib/, ...
liang li's user avatar
0 votes
1 answer
15 views

How to Build a Microservices Architecture with Centralized Authentication and Secret Management from Scratch like Google?

I am currently working on a project that involves setting up a microservices architecture with centralized authentication, authorization, and secret management. I want to implement a centralized ...
Radioactive Boy's user avatar
2 votes
0 answers
36 views

Is the isb necessary between modifying ttbr and flushing TLB?

I encountered a problem about replacing the active TTBR0_EL2 register. It seems that the new data loading does not use the new page table, or the instruction execution is messed up. In short, Data ...
wangloo's user avatar
  • 107
0 votes
0 answers
15 views

Python project architecture venv

In a lot of my python projects, i use a self written class: Logger. Quite simple, it print the given argument to the screen or saves it to disk. Like: Logger.log('some text'). In some applications I ...
Willem-Jan Z's user avatar
0 votes
0 answers
33 views

Software design for simultaneously running python programs

My question is not directly about the implementation in the code, but more about the basic design or technique I should use. Initial situation: I have a Python program that executes a simulation. This ...
Fred's user avatar
  • 39
-1 votes
0 answers
41 views

How to manage and refactor a large legacy PHP codebase for better maintainability? [closed]

I'm a junior dev at a small company and they've handed me this pure PHP app to take over. It's got about 1,000 files and is super unorganized with spaghetti code and no comments. It handles stuff like ...
xingxingmonkey's user avatar
-1 votes
1 answer
20 views

Where do you set default values when registering a user? [closed]

i am currently developing a web application in which the user should have the possibility to register. For this I have built a VueJS web application and a Golang REST API. However, the backend is now ...
MoreTags's user avatar
  • 165
0 votes
0 answers
7 views

Hide some tabs in software

I have some software but I don't have the source code. I downloaded from www.manager.io It has many tabs when you open it. Is there any way to hide some tabs and windows of this software? The Tabs I ...
justcoder's user avatar
-1 votes
0 answers
32 views

Python in the browser or on the server for an analysis heavy web application? [closed]

I am in the middle of developing an internal web application for my company. The idea is you can log into the app, fetch some data from our databases via an API and display it as a dataframe inside ...
Logan's user avatar
  • 11
2 votes
1 answer
30 views

Manage concurrent users per single subscription

I am implementing a functionality in which user can take one subscription &** maximum 10 account can be created per single subscription but only 3 concurrent users are allowed**. I am using ...
Yash Lathiya's user avatar
0 votes
0 answers
13 views

Cloud Tasks for queueing parallel Cloud Run Jobs with >30 minute runtimes?

We're building a web application through which end users can create and run asynchronous data-intensive search jobs. These search jobs can take anywhere from 1 hour to 1 day to complete. I'm somewhat ...
Colin's user avatar
  • 137
0 votes
0 answers
28 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
22 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

15 30 50 per page
1
2 3 4 5
1150