Tagged Questions
The storage tag has no wiki summary.
374
votes
56answers
32k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB.
What do you think ...
30
votes
3answers
11k views
Best way to synchronize local HTML5 DB (WebSQL Storage, SQLite) with a server
I am developing a mobile web application (for iPhone) with a local database (using html5 webstorage) so my app is still usable when the user is offline.
This is working perfectly, but I want to save ...
24
votes
23answers
6k views
Best Application for storing code snippets [closed]
Just wondering if you can point me in the direction of a simple, fast program which stores code snippets. I have been using a local wiki up to now, but I find it a little annoying at times. Ideally I ...
22
votes
9answers
13k views
Does Microsoft SkyDrive have an API?
So with the recent news that Microsoft Skydrive is going to get bumped to 25GB of storage per account, does anyone know if SkyDrive has an API?
(And if so, where are the docs?)
22
votes
4answers
8k views
C#: Create a virtual drive in Computer
Is there any way to create a virtual drive in "(My) Computer" and manipulate it, somewhat like JungleDisk does it?
It probably does something like:
override OnRead(object sender, Event e) {
...
21
votes
4answers
10k views
.bss section in elf file
If I understand correctly, the .bss section in ELF files is used to allocate space for zero-initialized variables. Our tool chain produces ELF files, hence my question: does the .bss section actually ...
20
votes
2answers
1k views
How does jQuery .data() work?
My Javascript knowledge is pretty limited.
Instead of asking several javascript questions I got the "message" from Stack overflow and started using jQuery right away in order to save me some time.
...
19
votes
6answers
835 views
Best practice for storing HTML templates on a page?
I'm developing a rather heavy JavaScript interface to a site I'm building, and I've decided to use the (recently made official) jQuery templates plugin to generate my elements from my queries to a ...
17
votes
11answers
5k views
Storing a file in a database as opposed to the file system?
Generally, how bad of a performance hit is storing a file in a database (specifically mssql) as opposed to the file system? I can't come up with a reason outside of application portability that I ...
16
votes
12answers
1k views
How to store documentation of programs, libraries and languages you use
As I often work without a fast or even any internet connection, I have a webserver that serves commonly used documentation, for example:
Various programming languages (php, Python, Java, ...)
...
14
votes
4answers
5k views
Calculating usage of localStorage space
I am creating an app using the Bespin editor and HTML5's localStorage. It stores all files locally and helps with grammar, uses JSLint and some other parsers for CSS and HTML to aid the user.
I want ...
14
votes
7answers
1k views
C++ string literal data type storage
void f()
{
char *c = "Hello World!"
}
Where is the string stored? What's the property of it? I just know it is a constant, what else? Can I return it from inside of the function body?
14
votes
9answers
6k views
Scalable Image Storage
I'm currently designing an architecture for a web-based application that should also provide some kind of image storage. Users will be able to upload photos as one of the key feature of the service. ...
14
votes
5answers
688 views
Distributed Storage of BLOBs for .NET?
I am looking for a reasonably well tested library+server to store a persistent distributed hash table.
I am hesistant to use SQL-based solutions as the data is highly document oriented, consisting ...
14
votes
14answers
2k views
Recommended location for document storage - in database or elsewhere?
Background:
We have an in house document storage system that was implemented long ago. For whatever reason, using the database as the storage mechanism for the documents was chosen.
My question ...
13
votes
19answers
1k views
Relational databases - there has to be more right?
I really enjoy database design and the whole concept of managing data semantically and all the logic that comes with it.
My knowledge level when it comes to databases is however (I would guess) quite ...
12
votes
6answers
636 views
where is the best place to save images from users upload
I have a website that shows galleries. Users can upload their own content from the web (by entering a URL) or by uploading a picture from their computer.
I am storing the URL in the database which ...
12
votes
6answers
4k views
How exactly does subversion store files in the repository?
I read the subversion book and it is clear to me that subversion does not store individual files but only deltas in order to minimize disk space. Subversion also does the same with binary files as ...
12
votes
9answers
12k views
How can I easily add storage to a VirtualBox machine with XP installed?
When I installed Windows XP on a VirtualBox machine, I made the hard drive only 10 GB since and assumed it would expand in size (as do hard drives in VMWare as far as I can remember, isn't this ...
11
votes
6answers
4k views
Is there a free alternative to Amazon S3?
I'm looking for an online simple storage service like Amazon's that is free. It doesn't have to be that reliable, fast or well documented.
It can also be a "free" version, like up to 10 Mb of ...
10
votes
4answers
4k views
Java Array is stored in stack or heap?
if I have an array declaration like this,
int a[];
here a is an array of integer type. Where this array of integer is stored on heap or stack?This is a primitve type int, all primitive types are ...
10
votes
3answers
4k views
Android - Storing images downloaded from the web
I had a question related to whether or not (and how) I should store images loaded from the web. Let's say I am calling a web service from my Android app. In this web service I get a URL for an image ...
9
votes
3answers
199 views
Key-value stores for medium to large values
We have a system that stores (single-digit) millions of images, varying in size from 8KB to 500KB, median around 15KB, average 30KB. The total data set is currently around 100GB. We want to access the ...
9
votes
3answers
4k views
Really force file sync/flush in Java
How can data written to a file really be flushed/synced with the block device by Java.
I tried this code with NIO:
FileOutputStream s = new FileOutputStream(filename)
Channel c = s.getChannel()
...
8
votes
8answers
709 views
Collecting Credit Card Information - not to collect payment
I am working in PHP on a Linux server with MySQL.
I have a requirement (that I have attempted to talk them out of) to collect credit card information from users so that our company can use the card ...
8
votes
12answers
589 views
Storing a million images
I have a project that will generate a huge number of images. Around 1,000,000 for start. They are not large images so I will store them all on one machine at start.
How do you recommended on ...
8
votes
9answers
1k views
How do video games efficiently store/retrieve large amounts of data?
For example, in Fallout 3, a save game stores the state and location of every single object and NPC in the game, and only takes up a few MB's. How do they do that!?!?
And then, during game play, how ...
8
votes
8answers
3k views
Why would you ever use asp.net's ViewState storage object over the Session storage object?
Other than because session storage is session-global to more than one page, why would you ever want to use the viewstate to hold values?
It seems kind of ridiculous to send any kind of information ...
7
votes
3answers
122 views
Java disk-based key-value storage
Is there an efficient Java implementation of a filesystem-based key-value storage with the following features:
Store, overwrite, and retrieve byte arrays by a unique ID (may be assigned by the ...
7
votes
10answers
353 views
How should I store a sparse decision tree(move list) in a database?
I have been thinking of making an AI for a board game for a long time, and recently I've started to gather resources and algorithms. The game is non-random, and most of the time, there < 3 moves ...
7
votes
7answers
221 views
Best data store solution for small mathematical data but fast and with aggregate functions
I'm looking for a data storage solution for a project with these requirements:
The application creates dynamically
a containter/table in the store.
For a small period of time (two
weeks for example) ...
7
votes
2answers
324 views
Can session storage be safe?
I would like to use session storage to query user data in the database only once and then simply use JS to retrieve it, so I'm thinking about using session storage. My question is next, is that safe?
...
7
votes
4answers
304 views
How does MonogoDB stack up for very large data sets where only some of the data is volatile
I'm working on a project where we periodically collect large quantities of e-mail via IMAP or POP, perform analysis on it (such as clustering into conversations, extracting important sentences etc.), ...
7
votes
5answers
1k views
Storing millions of log files - Approx 25 TB a year
As part of my work we get approx 25TB worth log files annually, currently it been saved over an NFS based filesystem. Some are archived as in zipped/tar.gz while others reside in pure text format.
I ...
7
votes
3answers
3k views
How to synchronize HTML5 local/webStorage and server-side storage?
I'm currently seeking solutions for transparently and automatically synchronizing and replicating across the client-side HTML5 localStorage or web storage and (maybe multiple) server-side storage(s) ...
7
votes
9answers
442 views
Best way to store many files in disk
I couldn't find a good title for the question, this is what I'm trying to do:
This is .NET application.
I need to store up to 200000 objects (between 3KB-500KB)
I need to store about 10 of them ...
7
votes
3answers
10k views
Android: Storing username and password?
If I want to store the username and password to be used inside an Android application, what is the best way to do it? Is it through the preferences screen (but what if the user misses this?), or pop ...
7
votes
7answers
313 views
The ethics of using 'My Documents' as a dumping ground
Something I've wondered about for a while now and would like to get a general opinion on:
Advanced apologies if this has been asked previously, I did a search and couldn't find anything similar. This ...
7
votes
6answers
2k views
storing uploaded photos and documents - filesystem vs database blob
My specific situation
Property management web site where users can upload photos and lease documents. For every apartment unit, there might be 4 photos, so there won't be an overwhelming number of ...
7
votes
4answers
3k views
How to make Linux GUI “usable” when lots of disk activity is happening
If I start copying a huge file tree from one position to another or if some other process starts doing lots of disk activity, the foreground app (GUI) slows way down. For example, take a 2gb file tree ...
6
votes
3answers
368 views
Should I obfuscate OAuth consumer secret stored by Android app?
My Android app contains OAuth consumer secret for Twitter's API. At the moment it's in .properties file in plain text, so it takes zero effort for someone to look it up in APK.
Should I take steps to ...
6
votes
8answers
367 views
Using array fields instead of massive number of objects
In light of this article, I am wondering what people's experiences are with storing massive datasets (say, >10,000,000 objects) in-memory using arrays to store data fields instead of instantiating ...
6
votes
1answer
1k views
How to know internal memory size in android?
This is my code,
private String memSize(String path){
StatFs stat = new StatFs(path);
long blockSize = stat.getBlockSize();
long availableBlocks = stat.getAvailableBlocks();
long ...
6
votes
1answer
696 views
SQLite or SharedPreferences for persistent data storage?
For persistent storage of data is there any distinct advantage of using a SQLlite database over SharedPreferences or vice versa? Currently my application data is only a couple of kilobytes in size, ...
6
votes
5answers
144 views
Large scale storage for incrementally-appended documents?
I need to store hundreds of thousands (right now, potentially many millions) of documents that start out empty and are appended to frequently, but never updated otherwise or deleted. These documents ...
6
votes
10answers
1k views
C Question: How to store data inside the executable file
complete newbie here,
I need to find a way to store 250 KB of plain text numbers inside my program's executable file.
Usually, I would put the data in a separate file and let the program read it ...
6
votes
3answers
531 views
Efficiently storing a list of prime numbers
This article says:
Every prime number can be expressed as
30k±1, 30k±7, 30k±11, or
30k±13 for some k.
That means we can use eight bits per
thirty numbers to store all the
primes; a ...
6
votes
3answers
248 views
How should I store extremely large amounts of traffic data for easy retrieval?
for a traffic accounting system I need to store large amounts of datasets about internet packets sent through our gateway router (containing timestamp, user id, destination or source ip, number of ...
6
votes
9answers
339 views
Fastest file access/storage?
I have about 750,000,000 files I need to store on disk. What's more is I need to be able to access these files randomly--any given file at any time--in the shortest time possible. What do I need to do ...
6
votes
2answers
775 views
Storing very large integers in MySQL
I need to store a very large number (tens of millions) of 512-bit SHA-2 hashes in a MySQL table. To save space, I'd like to store them in binary form, rather than a string a hex digits. I'm using an ...