Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
752 views

How to model in Java EE / JEE?

Let's say, I have decided to go with Java EE stack for my enterprise application. Now, for domain modelling (or: for designing the M of MVC), which APIs can I safely assume and use, and which I ...
6
votes
2answers
115 views

What available Python modules are there to save-and-load data?

There are many scattered posts out on StackOverflow, regarding Python modules used to save and load data. I myself am familiar with json and pickle and I have heard of pytables too. There are ...
4
votes
2answers
75 views

Super light weight java persistence layer needed

I need a super light weight persistence layer for a java app I'm writing. I need it to be a stand alone app and so far I've played with Ammentos & Persistence4J. I like them both (especially ...
4
votes
3answers
142 views

Perl: does reassigning a new value to a scalar overwrite its current contents in RAM?

I'm using Perl for a security-related task and am wondering when a statement such as: $test = "new value" is executed, is the old value that $test created overwritten in RAM? If not, is there a way ...
4
votes
4answers
1k views

Disk based HashMap

Does Java have (or is there a library available) that allows me to have a disk based HashMap? It doesn't need to be atomic or anything, but it will be accessed via multiple threads and shouldn't ...
3
votes
2answers
181 views

PhP/MySQL Storing User Searches between Pages so the User Can Go Back to Them

I'm writing a php-mysql application. The application allows the user to run a search against the database. When the search is run, if the user clicks on the back button to go back to it after ...
3
votes
5answers
171 views

Is it reasonable to save data as python modules?

This is what I've done for a project. I have a few data structures that are bascially dictionaries with some methods that operate on the data. When I save them to disk, I write them out to .py files ...
2
votes
1answer
88 views

iOS: best way to encode/decode memory intensive objects

I'm fairly new to iOS programming and am struggling to decide on what is the best way to encode memory intensive objects using the NSCoding protocol. I have a large number of Item objects. Each Item ...
2
votes
1answer
51 views

When an app gets updated, is it just the binary that gets updated, and not the data files?

What exactly will get updated when someone updates their app? Does it update external data files in the bundle, overwrite them, replace them...?
2
votes
1answer
117 views

Is it possible to implement a lightweight database using Blackberry Persistance options?

First I would like to explain why I want to use alternate Blackberry Persistance options rather than a Blackberry database itself, say SQLite. The reason is that the application i'm designing, I want ...
1
vote
2answers
43 views

How to realize persistence of a complex graph with an Object Database?

I have several graphs. The breadth and depth of each graph can vary and will undergo changes and alterations during runtime. See example graph. There is a root node to get a hold on the whole graph ...
1
vote
1answer
43 views

Which is best data storage type to store data received from server?

I have certain data that is received from the server, I call it History. Everytime I visit some website, I have to save the URL in the History list. The list will be displayed in a table later on, for ...
1
vote
3answers
240 views

Delphi: Store data in somekind of structure

For a simulation program I'm working in Delphi 2010. The simulation isn't a problem but I need to use large collection of data which gives a problem. The data is available in excel sheets, so there is ...
1
vote
1answer
69 views

Application Data Persistence Framework/Library?

Our Java desktop application is managing several text files as edited by the users. Currently, those files are saved into the file system using in-house Java code. We'd like to move away from this ...
1
vote
1answer
88 views

Correct practice for storing large images securely

What is the correct way to store large images on iOS, where "large" means > 1MB? Also, I want to prevent the user having the ability to access them via some kind of hacking.
1
vote
1answer
157 views

Load into CoreData

I have created a window based application with the coredata framework included. I have edited my xcdatamodel, created a new entity, defined attributes and generated the managed object class file. When ...
1
vote
1answer
177 views

NSUserDefaults Help

I need to save a NSMutableDictionary in NSUserDefaults. I have searched the web for many examples, but have not received any ones that are relevant enough. Can somebody post a small piece of code ...
1
vote
1answer
174 views

Best Way to save array of objects in iPhone app.

I have an iPhone program with a table view. The table view gets its data from a NSMutable Array. I want people to be able to add data to that table, i.e add objects to that array. Using addObject and ...
1
vote
1answer
279 views

html5 canvas “graphics persistence” on reposition/resize

I noticed that when you move a canvas around or when you resize it, everything inside gets erased. I remember having a similar problem in windows forms applications in C#. Anyway, what's the best way ...
1
vote
1answer
71 views

Does iphone 4 have automatic data persistence?

I loaded some app projects that I had been developing using the iPhone 3.1.3 Simulator. Now I got the 4.0 package, and for some reason when I hit the home button of the simulator to go the home ...
1
vote
2answers
148 views

Data persistance with BufferedReader and PrintWriter?

I have this simple application with a couple of classes which are all related. There's one, the main one, for which there is only one instance of. I need to save save and load that using a text ...
1
vote
2answers
51 views

How can i read back an object stored in a session?

First of all, here comes the load part. Structure MainStruct Dim Ans1 As String Dim Ans2 As String End Structure Dim Build As New List(Of MainStruct) ... ... ... Session("MyData") ...
1
vote
1answer
127 views

How can i preserve list contents on postbacks?

On the page load event of my webpage i fill the list of with the contents of the structure Structure MainStruct Dim Ans1 As String Dim Ans2 As String End Structure Dim Build As ...
1
vote
3answers
335 views

Data Persistance in iPhone Applications

In the development of my first serious iPhone application (Meaning I'd like to actually get it out on the AppStore), I needed a good way to represent my data. Instead of going with core data, I ...
0
votes
1answer
107 views

How to load data to app widget after device boot

I'm trying to read data to my widget after device boot. My boot receiver is this: public class onBootReceiver extends BroadcastReceiver{ public static final String TAG = "BootReceiver"; private ...
0
votes
2answers
42 views

Data organization into folder/file-like structure, objective c

I have about 20,000 NSDictionarys. Each dictionary contains three NSStrings. The dictionaries are organized in a folder-file like structure, i.e., I have about twenty main groups, and in each group I ...
0
votes
2answers
318 views

Persistent object in BlackBerry Application

Greetings, I have been trying to use the persistent object in BlackBerry Application. I am making a login page where i can save the username and password in the application. Below is the code i used ...
0
votes
1answer
244 views

Size Limitation of NSUserDefault?

Is there a size limit to NSUserDefaults? What is it? I'm afraid that such a limit can cause my app to crash.
0
votes
5answers
332 views

Persistent data in Actionscript 3?

What packages and/or classes do I want to look into when I'm trying to make a Flash program that will run on multiple desktop and mobile platforms and I want to use persistent data? Edit: I am ...
0
votes
1answer
120 views

WFP app - recommended approach for persisting this type of data

What would you recommended re an approach to persist data for the following situation: WPF application (desktop) Will be capturing information ever second (approx) and will need to store about 5 ...
0
votes
2answers
194 views

ASP.NET server data persistence

I'm not really sure exactly how the question should be phrased, so please be patient if I ask the wrong thing. I'm writing an ASP.NET application using VB as the code behind language. I have a data ...
0
votes
1answer
163 views

Is it possible to store multiple objects using object archving?

Okay, of course it is possible, that's no issue. In my code I have multiple objects that I work with, and they need to be data persistent. To do that I've used object encoding and storing them in a ...