3
votes
0answers
22 views
How do I structure the memory map in an N64 emulator?
According to Wikipedia, the N64 only has 4 MB of RDRAM (8 MB with the Expansion Pack), and the other quantities are similarly small (4 KB or so of L1 cache). However, technical documents I have found …
0
votes
1answer
25 views
PostgreSQL In Memory Database
Hi, I want to run my PostgreSQL database server from memory. The reason is that on my new server, I have 24 GB of memory, and hardly any of it is used.
I know I can run this command to make a …
1
vote
3answers
25 views
Tomcat per webapp memory settings
I am having two webapplication running inside tomcat. Java Heap space is allocated for Tomcat and it is shared for both appliaction. In that one application consumes more and other is getting …
1
vote
3answers
78 views
How is memory allocated for a static multi-dimensional array?
All,
This has been bugging me for a while now. In C\C++( i guess java and .NET as well) we do not have to specify the row index in a multi-dimensional array.
So, for example i can declare an array …
0
votes
2answers
52 views
dynamic allocation/deallocation of 2D & 3D arrays
I know about algorithms to allocate/deallocate a 2D array dynamically, however I'm not too sure about the same for 3D arrays.
Using this knowledge and a bit of symmetry, I came up with the following …
0
votes
2answers
88 views
What can cause “corrupted double-linked list” error?
I am having problems with a fairly complex code. I wasn't able to produce a short snippet that reproduces the error, so I'll try to explain the problem in words.
The code crashes randomly with the …
0
votes
1answer
20 views
GWT + Object Persistence + Maintaining Data In Memory
Hi,
I am currently carrying out research for the design and implementation of a web-based RSS aggregation system, with the aim being the use and evaluation of recommendation algorithms.
This system …
9
votes
8answers
206 views
Concurrency: how does shared memory vs message passing handle large data structures?
In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing.
This approach obviously alleviates the need for complex locks because there is no shared …
0
votes
4answers
142 views
Does my code leak memory (python)?
links_list = char.getLinks(words)
for source_url in links_list:
try:
print 'Downloading URL: ' + source_url
urldict = hash_url(source_url)
…
0
votes
1answer
29 views
Java Clip (Sound / Audio) Memory Leak after closing with close()
The following code creates a new audio clip, plays it, sleeps for 3 seconds and then closes it when it is finished playing. Despite the call to close(), I am watching the memory usage of the jvm go up …
0
votes
2answers
29 views
collections on appdelegate get stomped
I am a 15 year veteran of C++ and thought I could easily handle the memory issues on the iPhone. But I have been humbled by this new environment at several turns. Here is my problem. I hope I am …
1
vote
5answers
190 views
Memory Leak in C
Hello,
I am a C beginner, and I am writing a very simple linked-list. I am wondering if there would be a memory leak in the following code:
void removeListEntry(struct tableEntry *symp, struct …
1
vote
1answer
33 views
Django / Python / PIL / sorl-thumbnail generation in bulk - memory error
hi folks!
I'm trying to bulk generate 4 thumnails for each of around 40k images with sorl-thumbnail for my django app. I iterate through all django objects with an ImageWithThumbnailsFieldFile, and …
0
votes
3answers
61 views
What’s limiting my PHP resources?
I'm having a problem getting more memory out of PHP.
This is the error message:
Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 82 bytes) in ...
Yet:
I've set …
2
votes
3answers
73 views
Memory leak on return object
I have a hard time grasping this memory leak in my code. Basically it's returning an object containing a object. here's the following code:
-(id) getOptions {
FileManager *file = [[FileManager …
