Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
5answers
1k views

Suitable data storage backend for Erlang application when data doesn't fit memory

I'm researching possible options how to organize data storage for an Erlang application. The data it supposed to use is basically a huge collection of binary blobs indexed by short string ids. Each ...
4
votes
6answers
921 views

Best (free) way to store data? How about updates to the file system?

I have an idea for how to solve this problem, but I wanted to know if there's something easier and more extensible to my problem. The program I'm working on has two basic forms of data: images, and ...
3
votes
1answer
157 views

How to find Internal(Default Phone Storage ) and External Storage(Removable sd card) in android?

My Motorola Phone has 12GB internal storage and Removable Sd card feature. In DDMS file explorer my internal phone storage(12GB) is mounted as sdcard and my removable sdcard is mounted as sdcard-ext. ...
3
votes
1answer
693 views

XML in C++ Builder 6

How can I use XML as a simple data storage in Borland C++ Builder 6? Is there an internal class, which I could use? Thank's for help
3
votes
2answers
422 views

Storage capacity for a magnetic swipe card

Any idea regarding the usual storage capacity of a magnetic swipe card ( like the ones that are used in ATM's ) ? (PS : Tried googling but didn't get anything satisfactory and point on)
2
votes
2answers
223 views

Jquery data() storage

Can any one tell me where jquery data() stores the data and when it is get erased and how? Is there any performance issue if I use this to store ajax call result? For example: ...
2
votes
4answers
513 views

Performance consideration: Spread rows in multiple tables vs concentrate all rows in one table

Performance consideration: Spread rows in multiple tables vs concentrate all rows in one table. Hi. I need to log information about about every step that goes on in the application in an SQL DB. ...
1
vote
1answer
52 views

How to make process wide editable variable (storage) in django?

I want create project wide accessible storage for project/application settings. What i want to achieve: - Each app has it's own app specific settings stored in db - When you spawn django wsgi ...
1
vote
2answers
179 views

Android, sharedpreferences or internal storage?

I want to store some basic data like players_name,levels_completed,fastest_speed,fastest_time and bring it up each time the player starts a silly little game I am making... which is the perffered ...
1
vote
1answer
451 views

ipad: Running a local website and storing data

I'm trying to run a web form on an ipad that has no web connection. So far i've successfully been able to load the form into safari through the use of an app that takes a html file and displays it in ...
1
vote
4answers
484 views

Postgresql vs. MySQL: how do their data sizes compare to each other?

For the same data set, with mostly text data, how do the data (table + index) size of Postgresql compared to that of MySQL? Postgresql uses MVCC, that would suggest its data size would be bigger In ...
1
vote
4answers
2k views

iPad - best way to store data

What is the best way to store big amount of data in your application on iPad? e.g. I want store lot of manuals in PDF (like 200-500MB) and use them? Will be (these data) synced during synchronization ...
1
vote
1answer
1k views

iPhone How to BackUp third party application data on PC?

I have a query regarding BackUp of third party application data on PC. I am developing an application which can store photos, text, recordings. The user can add number of photos or recordings. So at ...
1
vote
1answer
768 views

Android: How do I deal with storing Bookmarks?

I am essentially using a listview but am looking at providing a bookmark functionality. I am thinking that I should store the item attributes in a file when bookmarked and retrieve when required to ...
1
vote
2answers
299 views

Storing multiple employee IDs in one column of data

Web app is being written in classic ASP with a MSSQL backend. On this particular page, the admin can select 1 or any/all of the employees to assign the project to. I'm trying to figure out a simple ...
1
vote
4answers
2k views

C# Storage of User Entered Data

I'm trying to write a C# program, where when a user enters some data into a text box and clicks on a "save" button, the information is stored in some sort of file that when the program is opened the ...
0
votes
1answer
30 views

Files created with openFileOutput method are removed when the app is updated

I'm saving some user data in the internal storage using the openFileOutput method in Context class. The problem is that when I update the app all these files are removed. Is there any way to avoid ...
0
votes
2answers
53 views

Data storage with infinite capacity [closed]

I want to store infinity number of java BigIntegers in a storage from where I can fetch those data, do some operation, insert new data. The operation needs to be very fast. What will be the best ...
0
votes
1answer
41 views

Physical data storage getting from table with its view

Good day! Who knows how physically SQL Server works the question: I have protected table and nobody can give information from it directly, just with its view. But it is important to know, the data, ...
0
votes
3answers
325 views

Shared Preferences android basic question

I save a user's username and passwords the first time he opens the app and store it in a SharedPreferences object. I check for the data the second time he enters and if its not null, then I got into ...
0
votes
1answer
396 views

“Failed to create DataStorage” error when using Pig with Hadoop

I've been trying to get Pig 0.9.0 to run using Apache Hadoop 0.20.203.0. I've looked high and low over google and mailing lists and even this question: cant run pig with single node hadoop server , ...
0
votes
2answers
225 views

Ipad - storing data from a webform

I have a simple form on a web page. I've got an ipad that is going to be used in a room with no 3g or internet connection. How can I store the results of all the data that is submitted through the ...
0
votes
2answers
244 views

streaming large amounts of data from flash

I'm currently working on a project where I generate a large amount of audio data to be stored on a users machine. It works fine for small amounts of data but as the memory usage grows the flash ...
0
votes
1answer
27 views

I need a C++ interface to S4s server

Does anyone have a C++ Object interface for the S4 server?
0
votes
1answer
131 views

Any (or best) way to share data between desktop and browser/webapp?

I am looking for a way to let the user expose some local data to an webapp. The idea is to have a webapplication that goes somethings (e.g. plots a chart, edits photos, etc...) using information ...
0
votes
2answers
366 views

Most efficient way to store simple data in drupal 6 and share with views?

I have a simple form that allows users to select an option from a select menu and then save it in the database. I need to store the full name so that views can use it. So the table in my database ...
0
votes
8answers
471 views

Highest Performance Database Storage Mechanism

I need ideas to implement a (really) high performance in-memory Database/Storage Mechanism. In the range of storing 20,000+ objects, with each object updated every 5 or so seconds. I would like a ...