Details on how data is being kept in memory/on disks, most frequently being applied to databases, media banks and backup-recovery solutions.
0
votes
0answers
16 views
compress bitmap to string android
Hi guys I have a problem when I go to encode the image to a bitmap and then do a comparison with the decode an encoded image with tools via the Internet but does not give me the same decoding and can ...
0
votes
1answer
21 views
Where to store large files when external storage is not writable?
I want to cache some files to be previewed later. The Android documentation says that you can store files in your cache directory by calling getCacheDir() but you should save a maximum of 1 MB ...
0
votes
0answers
13 views
How to have a downloadable file associated with a user?
If each user must have an oft-updated archive with their data, is it possible to store it in the DB somehow so it's accessible through activerecord? (I'm using MongoDB, by the way)
My initial idea ...
0
votes
1answer
14 views
Autocomplete High Level Interpretation
I've implemented a variation on the autocomplete program in python using trie-trees and matching against words from the Ubuntu standard dictionary. From my understanding trie trees are the fastest ...
0
votes
1answer
23 views
Are windows phone storage secure from external access?
I am building an application for Windows phone 8 which have some Assets currently stored in the installation directory of the app.
Since those need to be inaccessible from evil users, I'd like to know ...
2
votes
2answers
42 views
How to save 2 string file to internal storage in listview
I put in 2 texts then pressed save and saving internal storage. Press List button reading List.java there are saving data's in list. so I pressed MainActivity button and i put in 2 texts again. But ...
0
votes
1answer
23 views
Persistent Logging in Windows Azure
So far I have tried a couple of different strategies to persist my logs into my storage area.
Trace.Listeners.Add(new TextWriterTraceListener(new Logger(true).output));
Trace.WriteLine("Added a ...
0
votes
0answers
12 views
Save user input in database
I use a user interface with different number of screens. I need to permanently store all user input (checkboxes, textfields) of one session so that the user can reload and see what he has done.
I ...
0
votes
1answer
18 views
How to store sqlite database in sdcard in android?
I would like to store sqlite database in sd card instead of storing locally,I tried examples in my code but it didn't help.I have added block of code I have used below,kindly help on what I am missing ...
-2
votes
0answers
39 views
Android with Internal storage, SD card and phone storage? [closed]
I have a Mediatek MTK6577 based Android smartphone. I'm a little confused, the storage architecture is:
Internal storage: about 500mb
SDCard: about 8GB,
Phone storage: about 2GB
I can not select the ...
0
votes
0answers
8 views
Reserved Azure website Storage
At the moment when you create a new reserved Azure Website it uses (what I think is a virtual drive mapped to a network location) 10GB of disk space. I’d like to ask is the data that we store on this ...
0
votes
1answer
11 views
Scalable cloud storage
I'm going to publish a video in a Web page for streaming. I expect having more than 100.000 visits per day in a month. I want to upload my video to a server (or service) that offers the same band-with ...
-5
votes
0answers
35 views
How to save internal storage via custom adapter in android list [closed]
I'm beginner of android. I have a problem. here is my code:
MainActivity.java
public class MainActivity extends Activity {
EditText text1, text2;
Button save, list;
static String top, bottom;
...
0
votes
2answers
24 views
How add a specific variable in custom AuthStorage in Zend Framework 2
I'm working on ZF2 and I have developped my own storage for authentication but I wonder how to add a new persistent variable (session-like).
Look My Auth Storage :
<?php
namespace ...
0
votes
0answers
12 views
LevelDB random read — why is official benchmark so good?
According to this official benchmark, it performs 129,000 ops/sec on random read. But as I know, random read needs at least ONE random access to disk (cache has no help with random read because the ...