Most voted "memory-limit" questions
9 questions
Sort by count of
-
10
votes2
answers808
viewsWhat are the size limits of variables in Ruby?
I would like to know the size limit of variables of the following types: String - How many characters can I have in a single string? Integer and Float - What is the largest and smallest number that…
-
3
votes1
answer715
viewsHow to increase performance in PHP?
If I increase the memory_limit (default: 256MB) in PHP settings, my application will run faster or I will end up losing performance because it consumes more server CPU processing?…
-
2
votes1
answer260
viewsSystem.Outofmemoryexception - Parser for large files
I created a simple grammar to interpret a file whose format is much like a JSON. However, when I try to parse the file I get the exception Sytem.OutOfMemoryException. This is because of the file…
-
2
votes0
answers74
viewsCall HTTP error ERR_RESPONSE_HEADERS_TOO_BIG
I am submitting a form with lots of information and I receive the following message: ERR_RESPONSE_HEADERS_TOO_BIG Small section of the code: $("#editForm").submit(); I understand that the error is…
-
1
votes1
answer727
viewsWhat is the memory limit of php 7?
I read somewhere (and now I’m not finding where) that in php version 7 there is no memory lilmite. That is, the memory that can be allocated would be the machine’s RAM. Does it proceed? Has anyone…
-
1
votes1
answer459
viewsFlutter Dart consuming a lot of RAM memory during build
I have installed the flutter for web, desktop and android. The problem happens in all platforms that I try to run a project, and it takes a long time to build the project, before it didn’t take that…
-
1
votes1
answer505
viewsMemory allocation error for multiple files "terminate called after Throwing an instance of 'Std::bad_alloc' what(): Std::bad_alloc" [C++]
I’m using a sorting algorithm for a digital voice signal processing project. This algorithm was developed to receive all audio signals in a single vector to do the processing, but I’m having…
c++ allocation memory-management multiple-file-upload memory-limitasked 4 years, 4 months ago Marcus Vinicius De Paula 21 -
0
votes1
answer621
viewsWhat is the best value for PHP’s memory_limit with 4GB of memory?
I have a server cloud dedicated, with 4GB of RAM and 4 colors of 1.2GHz. I have an extremely robust system running and would like to know the amount of memory to set in memory_limit in PHP 5.5?…
-
0
votes1
answer90
viewsProblem with Segmentation fault with whole pointer
The program below attempts to reproduce a cellular automaton model. When I use "n" (number of cells) above 65 thousand, the program returns Segmentation fault. I tried to "print" some text in…