Most voted "scalability" questions
13 questions
Sort by count of
-
24
votes2
answers17491
viewsWhat does software scalability mean?
I hear a lot if I talk about what software needs to have scalability in applications. Searching on the subject, I found the following definition: Meaning of Scalability: In software engineering,…
software-architecture software-engineering terminology scalabilityasked 9 years, 1 month ago Duds 6,726 -
24
votes3
answers13327
viewsWhat is the difference between vertical and horizontal scaling?
I’ve recently seen some things about cloud, BD’s, etc. In some of these subjects I see quite the term scheduling. Faced with this theme I have the following doubts: The difference between vertical…
-
18
votes2
answers1713
viewsWhat is a scalable code?
Scalability is linked to growth, in the context of code, I have some pertinent doubts. What is a scalable code? The scalability of code involves more than one aspect or only performance or design? A…
terminology software-engineering encoding-style scalabilityasked 5 years, 8 months ago renanvm 3,797 -
5
votes2
answers318
viewsIn an architecture, does the number of Dlls influence performance? Scalability?
I have the habit of creating my Solution like this: Entity - Class Library (Classes, entities) Utils - Class Library (Classes of support, security, generate xml, in short, all kinds of functions)…
-
3
votes2
answers1472
viewsDatabase for mobile devices
I’m creating a mobile app and need to use a database to store user data. I’ve thought about Sqlite, but it is not recommended to use it on sites with more than 100 thousand requests per day, and if…
-
3
votes1
answer2145
viewsWhat is the difference between scalability and elasticity?
Until then my understanding between the terms is somewhat confusing: Scalabidade: increase system capacity as demand increases; Elasticity: increase or decrease system capacity as demand; But that…
-
3
votes0
answers112
viewsHow to create Microservices thinking about scalability?
Hello, I’m building a microservice that integrates data from a SOAP webservice. For this I am using a scheduler that once a day searches new data and writes in my base mongodb. Since the standard of…
-
2
votes1
answer624
viewsSession in a database
Thinking about the scalability of applications developed in Asp.net-mvc, I searched for alternatives not to use "session in memory". I saw that it is possible to save session data in database and…
-
1
votes0
answers408
viewsScalability with Java
Currently I hear a lot about how some languages are highly scalable. But how would a scalable system be in Java? That is, a high performance system capable of withstanding millions of simultaneous…
-
1
votes1
answer22
viewsHow to store notifications for performance?
Thinking of a system that at first is small and there is a possibility of a large growth in the flow, what would be the most intelligent/appropriate way to store notifications (a la facebook)? In .…
-
1
votes0
answers13
viewsProblem logging in with Grails 3 on Kubernetes
I’m having problems authenticating my system. I’m using Grails 3 with Springsecurity and when I will scale to 2 or more replicas in my Kubernetes cluster authentication stops working. What I might…
-
0
votes1
answer119
viewsScalability with Pm2 or Docker?
Good afternoon, I have a question about the differences.. I have an architecture Back Nodejs, Redis Frontend Vuejs What’s the difference between putting to climb with Docker swarm and putting PM2..…
-
0
votes0
answers44
viewsRelationship between performance and scalability
I was facing problems to carry out the maintenance in a code of my own, due to the extensive and little defined classes (grew a lot over time), to simplify the question I will divide the time line…