Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
112 views

Retained heap size of a string in java

This is a question that we have had trouble understanding. It's tricky to describe it using text but I hope that the gist will be understood. I understand that a string's actual content is enclosed ...
1
vote
1answer
66 views

In memory tables functionality for Sqlite and other embedded databases

I am looking for a functionality in which i can keep some data in the memory tables for frequent usage and the less frequent data in normal tables (on disk). This can be achieved in sqlite using the ...
1
vote
1answer
4k views

AppDelegate Being accessed from different classes, from RootController.m

My problem is in getting the information from a controller(which happens to be my rootViewController) to another view. In trying to get access to it through the app delegate, I was not able to get it ...
0
votes
1answer
156 views

Rails3: Render an in-memory image in the view

I have a rails app, which has a png file in memory in the controller which was generated by spark_pr. @pngfile << Spark.plot( [47, 43, 24, 47, 16, 28, 38, 57, 50, 76, 42, 20, 98, 34, 53, 1, ...
0
votes
3answers
2k views

what is retain count in objective c?

in my application i have a uitableview as my first screen with uinavigation controller. in my first screen i put NSLog(@"Home Screen retain Count=%d",[self retainCount]); in it's view did load it ...
0
votes
1answer
151 views

VB6 web application - RM or Non-RM - does it really matter?

I'm supporting a legacy VB6 web application. We generally try to use Retained in Memory (RM) components. However, some components are "borrowed" from a Windows application. Since those components ...