-1
votes
2answers
27 views

PHP Storing sessions

Wich way would be the most effective way of storing a session in php.(for login or user-related data) Would the best thing be a database or using the built in $_SESSION in php? wich one would be the ...
0
votes
1answer
19 views

Icinga performance data: direct pipe into database

I just read through some icinga documentation regarding the performance data collection and processing. But there are some things unclear to me right now: Writing to file/disk -> does this roll over ...
0
votes
0answers
21 views

Preferred method of working with logical objects

I'm having an array of objects represented as JSON string that will be coming from an API server. Let's suppose we have some Movie Categories and actual Movies that belong to each category: [ { ...
1
vote
1answer
107 views

How does neo4j perform in time and space complexity for given type of nodes, relationships and queries?

Consider I'm going to have following things in my graph: 100 Million nodes, More than 1 Billion connections/relationships Node properties: around 10 properties, mix of int, doubles, strings, ...
0
votes
1answer
256 views

How to ensure data reaches storage, bypassing memory/cache/buffered-IO?

In Linux, how to ensure my system write() calls (and similar write-IO calls/variants) reach non-volatile storage, bypassing memory/cache/buffered-IO?
4
votes
2answers
502 views

store TEXT/BLOB in same table or not?

While searching trough SO, I've found two contradicting answers (and even a comment that stated that) but no definitive answer: The problem is: is there any performance benefit, if you store a ...
4
votes
0answers
143 views

Need solution for objects and relationships storage

I need in solution for the storage objects and relationships between this objects with the best perfomance. I need to store the user object and the relations of friendship between this users. I need ...
0
votes
0answers
26 views

Can I use one EhCache as value for another EhCache

Can I use Cache (cache2) object as value for another Cache cache (cache1). Basically I have cache1 where key is String and value is another EhCache. The requirement is that cache2 will have a ...
2
votes
2answers
72 views

What ist the fastest data storage to pass a group of objects from one thread to another?

Simple explained: I have two threads, one reading streams and producing data-objects from their content. I then have to pass them to the second thread, writing them into a database. I want to separate ...
0
votes
0answers
140 views

Creating own object storage similar to shared preferences

I just want to ask if it is advisable to create a class that works like SharedPreferences. The only difference is that this class will store multiple custom objects that I create within the whole app. ...
1
vote
3answers
192 views

Impacts of Large Nullable Columns in SQL Server

I'm designing a schema where certain members can upload images (based on a permission). I'm planning on doing this using a varbinary(max) column. What are the storage and performance implications to ...
0
votes
2answers
4k views

Estimating IOPS requirements of a production SQL Server system

We're working on an application that's going to serve thousands of users daily (90% of them will be active during the working hours, using the system constantly during their workday). The main purpose ...
3
votes
3answers
383 views

What is the best way to load and cache images in Java?

I have a large collection of over one thousand 16 by 16 pixel tile images that I'll need for a game I'm making in Java. What would be the best way to store the tiles without exhausting the available ...
2
votes
2answers
213 views

Clojure: “transpose” efficiently a medium sized list of maps

I need a very fast and efficient way to "transpose" a list of maps in clojure. Let's say I have: (def monthly-sales [{:month 1 :pc "A" :sales 100} {:month 2 :pc "B" :sales 200} ... {:month 12 :pc ...
0
votes
5answers
110 views

Why can a short only hold 65,536 possible values?

I understand that with a short you can have 65,536 possible ints, but why can't you have 255,256 possible values (0 to 255,255 unsigned)? I see that you could do it like this: Has someone already ...
2
votes
1answer
522 views

Using Solr to store data for retrieval Vs. MySQL

I'm building a system where I use Solr for search over my content, and MySQL to store the content. The rationale is that MySQL is a good persistent storage solution, and I can join data with other ...
0
votes
1answer
50 views

Storage Performance

I want to enable users to upload images & videos to a website. Question is now, shall I just drop all the files in one folder or make a folder e.g. for each user? (Of course it would be easier to ...
1
vote
2answers
63 views

what is dominate factor for disk price? [closed]

What is dominate factor of the disk price, capacity or IOPS? I think the answer of this question should also answer this one in which i asked why cost of disc I/O per access is ...
0
votes
3answers
87 views

is this way of saving true/false options in js efficient?

In some places, you'll se options saved as numbers. For example, when setting file permissions, you pass them using a value ranging from 0 to 7 for each group of users. Each one of the bits in the ...
1
vote
6answers
862 views

Storing lots of small files: archive vs. filesystem

I am creating an application that requires a lot of image thumbnails (~3000, 5-25KB). Because speed is essential I plan on loading these images into memory when the application starts. At runtime, new ...
1
vote
8answers
122 views

Best way to store 1 trillion lines of information

I'm doing calculations and the resultant text file right now has 288012413 lines, with 4 columns. Sample column: 288012413; 4855 18668 5.5677643628300215 the file is nearly 12 GB's. That's just ...
2
votes
1answer
920 views

mysql database .ibd file size

MySQL .ibd file has grown to more than 3 TB and my RedHat box can no longer support adding more disk spaces. Questions How can I scale database storage ? What best practices can resolve this issue ...
2
votes
1answer
128 views

five minutes rules - the price of one access of disc I/O

This is very interesting topic, they use following formula to compute access interval time: BreakEvenIntervalinSeconds = (PagesPerMBofRAM / AccessesPerSecondPerDisk) × (PricePerDiskDrive / ...
1
vote
3answers
1k views

Efficient way to manage large array of bitmaps android

I have a question regarding the recommended/best practice for managing a large array of bitmaps. (It's a flipbook type app where the user goes through and creates new pages...like a virtual pile of ...
1
vote
1answer
150 views

What are the helpful cases of Internals Viewer for SQL Server to convince me to use it?

I am in doubt whether I should spend time for installing, studying and using "Internals Viewer for SQL Server" What are the most helpful practical uses to convince me to use it for SQL Server ...
2
votes
5answers
111 views

Unused Database Table Effects

In our SQL Server Database we have at least 25-35 lookup / empty tables that are never used. Is there any negative effect for keeping them in our database (performance, storage etc) Basically, would ...
0
votes
2answers
439 views

Storage with fast read (slow write), able to store large amount of records

I'm searching for fast key-value\structured storage for lots of long strings. I'll update them seldom (and completely). I (will) store some often-update data (as users ect.) in MongoDB; as run-time ...
5
votes
3answers
398 views

Do bit operations cause programs to run slower?

I'm dealing with a problem which needs to work with a lot of data. Currently its values are represented as an unsigned int. I know that real values do not exceed a limit of 1000. Questions I can ...
3
votes
2answers
706 views

How to cache and store objects and set an expire policy in android?

I have an app fetch data from internet, for better performance and bandwidth, I need to implement a cache layer. There are two different data coming from the internet, one is changing every one hour ...
8
votes
9answers
960 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 ...
0
votes
1answer
2k views

/proc/sys/fs/aio-nr is never higher than 1024 (AIO on linux)

I'm trying to use async io on linux. As far as i know there're 3 options: kernel calls (io_submit and friends) libRT - uses threads in user space libRTKAIO - wrapper of kernel calls which does not ...
5
votes
9answers
291 views

Drawbacks to having (potentially) thousands of directories in a server instead of a database?

I'm trying to start using plain text files to store data on a server, rather than storing them all in a big MySQL database. The problem is that I would likely be generating thousands of folders and ...
2
votes
1answer
65 views

storing + evaluating performance data

since we suffer from creeping degradation in our web application we decided to monitor our application performance and measure individual actions. for example we will measure the duration of each ...
0
votes
8answers
563 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 ...
10
votes
4answers
4k 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 ...
4
votes
1answer
6k views

why shrink a sqlserver 2005 database?

What are the advantages and disadvantages of shrinking a database? Are there any performance implications?