Tagged Questions

0
votes
0answers
17 views

What is good book to understand different components in SAN (Storage Area Network)? [closed]

I am looking for a storage book which makes storage concepts clear as well as give insight into market, gives ideas of which storage vendors have good products, which device is bes …
-1
votes
0answers
17 views

Data is not getting updated when added using core data.

I have used a class which provides the API to add, delete data. For storing I have used core data framework. The problem is when I use the same class for 2 different applications, …
1
vote
2answers
75 views

Dependency injection and ASP.Net Membership Providers

I am in the process of creating a custom membership provider for an ASP.Net MVC website. The provider is being created as a separate class as part of a bigger library. There is a n …
2
votes
2answers
55 views

Should I store emails in a DB or in a text file ?

Hi, I need to store email address from a simple form (like a newsletter), but the website loading is high, I'm then wondering if I'd rather store them to a text file (eventually w …
1
vote
3answers
84 views

Idiomatic application data for Mac vs. Windows vs. Linux

I'm a Mac user, so I know that for Mac OS X, I'd like my games packaged up in a nice .app bundle (like Aquaria did, for example). But what is the standard on Windows? And what is t …
4
votes
4answers
88 views

.NET Windows Store Data

Well if i want to store data for a application machine wide i just use Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) And if i want to store data pe …
0
votes
3answers
122 views

Cloud HUGE data storage options?

Hi, Does anyone have a good suggestion on how to do video recording? We have a camera that can record and then stream live video to a server. So this means we can have 1000's of …
0
votes
5answers
66 views

best way to store 2/3 records [Windows Application]

Hi I am going to develop a Windows application in .net and I will be string few values. (A max of 20 values). What is the best way of storing this? Using SQLIte seems to be a ove …
2
votes
2answers
123 views

Fast, searchable dict storage for Python

Current I use SQLite (w/ SQLAlchemy) to store about 5000 dict objects. Each dict object corresponds to an entry in PyPI with keys - (name, version, summary .. sometimes 'descriptio …
5
votes
5answers
283 views

Fast Relational method of storing tree data (for instance threaded comments on articles)

I have a cms which stores comments against articles. These comments can be both threaded and non threaded. Although technically they are the same just with the reply column left bl …
1
vote
3answers
193 views

“BigInt” in C?

What is the easiest way to handle huge numbers in C? I need to store values in the Area 1000^900... Does anybody know of an easy way to do that? Any help would really be apprecia …
5
votes
2answers
242 views

How to best handle the storage of historical data?

I'm trying to determine how I should store historical transactional data. Should I store it in a single table where the record just gets reinserted with a new timestamp each time? …
4
votes
3answers
1k views

Where to save high scores in an XNA game?

I'm making a simple 2 player game in XNA and started looking into saving the player's high scores. I want the game to work on the XBox 360 as well as Windows, so I have to use the …