Tagged Questions

A solid-state drive (SSD) is a flash disk and so similar to a thumb drive, but much faster and with a hard-disk interface, typically SATA.

learn more… | top users | synonyms

35
votes
17answers
12k views

SSD and programming

I'm trying to put together a business case for getting every developer in our company an SSD drive. The main codebase contains roughly 400,000 lines of code. My theory is that since the code is ...
8
votes
4answers
170 views

Bizarre directory delete behaviour on SSD drive

Directory c:\test has 50 or so files in it, no subdirectories. If IO.Directory.Exists("C:\test") Then IO.Directory.Delete("C:\test", True) End If ...
8
votes
4answers
315 views

Data analysis using R/python and SSDs

Does anyone have any experience using r/python with data stored in Solid State Drives. If you are doing mostly reads, in theory this should significantly improve the load times of large datasets. I ...
7
votes
5answers
288 views

Programming in the era of SSD

I am wondering how the oncoming SSD technology affects (mosty system) programming. Tons of questions arise, but here are some most obvious ones: Can the speed of disk access be considered anywhere ...
7
votes
4answers
1k views

Is there any way of detecting if a drive is a SSD?

I'm getting ready to release a tool that is only effective with regular hard drives, not SSD (solid state drive). In fact, it shouldn't be used with SSD's because it will result in a lot of ...
6
votes
3answers
207 views

Is it possible for code to change without Git knowing about it?

This morning I ran my tests and there are 2 failures. But I haven't changed any code for a few days and all tests were passing. According to Git, there are no changes (except for coverage.data, ...
6
votes
9answers
607 views

What's your experience with Flash drives?

EMC is marketing Solid State Flash Drives and my project is thinking about moving that direction in the future. Does anyone have any experience with replacing traditional disk storage with flash ...
5
votes
5answers
775 views

Algorithms for Optimization with Fast Disk Storage (SSDs)?

Given that Solid State Disks (SSDs) are decreasing in price and soon will become more prevalent as system drives, and given that their access rates are significantly higher than rotating magnetic ...
3
votes
3answers
270 views

Visual Studio 2010 with SSD Performance [closed]

I have a Core i5 laptop with 4Gbyte RAM and I use Windows 7 32 bit operation system. I would like to improve my laptop performance, but unfortunately I can't upgrade Win 7 to 64 bit. My question is, ...
3
votes
2answers
279 views

Can a hybrid SSD drive, like a Seagate Momentus XT, add to your developer productivity?

Thanks to Mr. Joel Spolsky we all know that an SSD won't exactly help compile time but can help in just about everything else. I'm looking to eke out some more of that "everything else". Launching ...
3
votes
1answer
2k views

Difference between sequential write and random write

What is the difference between sequential write and random write in case of :- 1)Disk based systems 2)SSD [Flash Device ] based systems When the application writes something and the information/data ...
3
votes
3answers
832 views

Detect SSD in Mac OS X (Cocoa)

Is there a reliable, quick, deterministic way (definitely not benchmark) to check whether system drive in Mac OS X is on Solid State Drive? Is there any other indicator how well disk handles parallel ...
2
votes
1answer
158 views

How do I simulate normal hard drive performance on my SSD based Mac?

What I Want I want to simulate the performance of a normal hard drive on my SSD based development machine. Background I'm developing a Mac application on a Macbook with an SSD. It's gloriously ...
2
votes
2answers
157 views

C# ThreadPool for writing to SSD disk

I have a thread pool writing data to an SSD disk. (windows XP, c#) I would like to choose a pool size to optimize performance. Theoretically, should performance improve with more threads? How do SSDs ...
2
votes
4answers
1k views

Visual Studio 2010 performance on new SSDs (eg. Corsair Force)

I know the topic has been discussed to death in the early days of SSDs and I know that some tests have shown back then that you'd be better off upgrading your CPU than your HDD (mostly due to random ...
2
votes
3answers
544 views

Do any clouds support SSD storage?

I'm using Amazon cloud right now, and the biggest performance issue is horrible I/O performance. As long as something fits RAM it's fine - once it's too big it gets ridiculously slow (in many ...
2
votes
1answer
190 views

Single Source Document in Word with VBA

Is there a way to do a "Single Source Document" in Word via VBA or other techniques. My company creates training and wants to have a "master document" that hosts everything in the training and then ...
2
votes
2answers
552 views

SSD as inline cache

This may be slightly off-topic for a strictly programming site, but I'm interested in starting a software project or contributing to an existing project that can do what I'm proposing. Now that SSD ...
2
votes
6answers
1k views

TPC or other DB benchmarks for SSD drives

I have been interested in SSD drives for quite sometime. I do a lot of work with databases, and I've been quite interested to find benchmarks such as TPC-H performed with and without SSD drives. On ...
1
vote
0answers
272 views

Does MacBook Air's SSD fail? [closed]

I have seen many discussions describing SSD as fail-prone. I have read Jeff Atwood's warnings. Portman Wills' experiment looks alarming: Super Talent 32 GB SSD, failed after 137 days OCZ Vertex 1 ...
1
vote
0answers
11 views

is it possible to extract compilation statistics from vs 2010?

For instance, I want to find out how many times I built the solution in a day and how long the process took in total (per day). I want to buy an ssd and I am not convinced it would save me a lot of ...
1
vote
2answers
121 views

Developer productivity with faster hard drives

I am trying to quantify if a faster hard disk would make me more productive as a developer. I work on multiple development workstations using Visual Studio 2010 and Mercurial (TortoiseHg) and one of ...
1
vote
1answer
170 views

sqlite updates slow (15 seconds for 1720 records) on SSD disk

Dear fellow developer, for some reason updates for 1720 records takes around 15 seconds when on SSD disk (especially when having trim enabled). I have tweaked the sqlite settings using the following ...
1
vote
2answers
1k views

Tuning SSD MySql Performance

I'm testing SSDs for use with MySql and am unable to see any performance benefits. This makes me feel like I must be doing something wrong. Here is the setup: Xeon 5520 2.26 Ghz Quad Core 12 GB ...
1
vote
1answer
289 views

ATA TRIM Specification?

Anyone know where I'd find an ATA reference that details the protocol for triggering a TRIM? I'm looking to discover what sort of structure/object/data I'd need to send in a raw IOCTL to get an ATA ...
1
vote
5answers
1k views

How to determine storage type (SSD drive or HHD .mechanical drive), using C language

How can I, from a C program, read the hardware information of a drive? (I.e. to determine if the drive is an SSD or a mechanical disk.)
1
vote
6answers
569 views

I'm looking for database suitable for ssd-disks

as far as I understand postgres, mysql or oracle will be wear out ssd disk very fast. I need one INSERT query per few second and statistic processing of inserted lines per 24 hour. platform: linux
1
vote
2answers
324 views

Redundancy implications of SSDs in servers

When configuring a database server with mechanical drives, mirroring hard drives or using RAID5 for redundancy in case of drive failure is the norm. Is this redundancy also required when using solid ...
0
votes
0answers
21 views

How to uninstall Rapiddrive Driver from Lenovo Y470 [migrated]

I bought Lenovo Y470 laptop last week with high configuration such as i7 2G processor, 8Gb ram, 1Gb Nvidia Graphics, 750Gb HDD. I updated the drivers from Lenovo. Unfortunately i installed Rapiddrive ...
0
votes
1answer
48 views

Microsoft Team Foundation Server (SqlExpress) — How to ensure that the data is being saved on my standard HDD instead of my SSD? [closed]

Basically, I installed Microsoft Visual Studio and Team Foundation Server with the default settings. It's blazing fast, which probably means that it is reading/writing from my SSD. I'd actually like ...
0
votes
0answers
6 views

SSD Trim and iSCSI?

I'm setting up an iSCSI storage array using SSD drives and am trying to find out if SSD Trim works over iSCSI. If it depends on the initiator, I am using the Microsoft software initiator that comes ...
0
votes
0answers
32 views

Poor random read SSD performance on Linux [migrated]

I recently got an Intel 320-series SSD (http://www.intel.com/content/www/us/en/solid-state-drives/solid-state-drives-320-series.html), and I am having difficulty achieving the advertised 38K IOPS for ...
0
votes
0answers
40 views

SSD, USB 3.0 CARD & USB 3.0 Drive copy no better than USB 2.0 Drive

We have an application that needs to copy files from Hard Drive to USB. The file sizes usually range from 1.0 - 1.5 GB. Typically on a SATA 7200RPM, USB 2.0 CARD, USB 2.0 Drive, it takes about 3 to 5 ...
0
votes
1answer
118 views

Turning on encryption on SandForce controllers in OCZ SSDs

I have an OCZ Agility 3 SSD. This SSD runs the SandForce 2281 controller (PDF spec sheet) which supports native encryption. This is especially useful since the controller performs data compression for ...
0
votes
0answers
133 views

SSD vs RAM based Cache Performance [closed]

We are in need for a cache layer that will sit between the database and the UI (web). I think there are a few places where data caching will add a lot of value to speed it up. The question here is ...
0
votes
0answers
30 views

What is the deal with these SSD benchmarks softwares? They all seem different

I'm trying to get the best SSD for database applications. I'm looking for 4K Random Writes since the server will have huge amount of RAM for the reads. I'm checking the benchmarks and all seem giving ...
0
votes
1answer
42 views

If the admin don't set the ssh service port on default 22, how can i find the port that he set? [closed]

nmap can't do the work. I have checked that. ps: I just use the basic nmap function(nmap host). Oh, My god. Trust me i don't plan to do bad things. I am just curious! Please don't do -1! update, ...
0
votes
1answer
884 views

Linux SSD Caching for HDD [closed]

Is there an equivalent for Intel Smart Response Technology in Linux? Basically, it uses a SSD as a secondary HDD cache to increase HDD performance by 3.5x or more.
0
votes
1answer
184 views

Build Error: File not found after Time-Machine Restore to new SSD (Xcode)

I restored a time-machine backup onto my new SSD. Since then, I can't build my Xcode project anymore. It gives me an error at the #import line, saying 'Three20/Three20.h' file not found. How is ...
0
votes
1answer
38 views

Storage subsystem cache settings when using SSD

I would like to upgrade an existing storage subsystem with enterprise level SSDs. However, I have found little evidence on whether the enclosure cache should be set to WriteBack or WriteThrough. I ...
0
votes
0answers
144 views

Why does my computer hang when using AHCI instead of IDE mode? [closed]

I have a Corsair SSD (CMFSSD-128GBG2D) with the latest firmware installed (VBM19C1Q) and it was running wonderful when my sata controller was configured using the IDE option in my BIOS, however my ...
0
votes
1answer
1k views

vmware esxi 4.1 with sata ssd

Is it possible to use a sata ssd (e.g., Intel X25-M) with VMWare ESXI 4.1? This would be used in a dell poweredge r310 (just has onboard sata, no raid controller). At this point, standard 7200 RPM ...
0
votes
1answer
591 views

php, mysqli-stmt.bind-param]: Number of elements in type definition string doesn't match number of bind variables

// if the 'id' variable is not set in the URL, we must be creating a new record else { // if the form's submit button is clicked, we need to process the form if ...
0
votes
1answer
2k views

fdisk fix mis-aligned SSD to correct head and sector count

maletor@denmark:~$ sudo fdisk /dev/sdc WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to ...
0
votes
3answers
115 views

Why can NAND flash memory cells only be directly written to when they are empty?

I'm trying to understand why you have to erase cells before writing to them with respect to SSDs and how they slow down over time.
0
votes
0answers
57 views

what are the variations of Flash SSDs? [closed]

need this in my research... hope someone could tell me...
0
votes
1answer
247 views

When to define SDD(System Sequence Diagram) operations System->Actor?

I am having some trouble understanding how to make System Sequence Diagrams, as I don't fully grasp why in some cases one should define operations for System -> Actor and in others don't. Here is an ...
0
votes
1answer
86 views

High rate data stream and memory deficiency

I have a program that accumulates traffic from network interface in 800 Mb/s. This program is developed by Delphi, also in 32bit platform(Delphi does not support 64bit architecture). I'm writing ...
0
votes
1answer
240 views

Anyone have great experience with any SSD's running Vista?

I had not such a good experience and I documented it here: http://peterkellner.net/2009/02/08/ssd-notebook-lenovo-patriot-warp-veryslow/ I'd love to get the SSD working in my vista Lenovo W500 ...
-1
votes
1answer
27 views

Optimizing performance on a custom c app running on a custom c platform

This question is a mix of software and hardware-related issues. I have a custom app, written in c using VS2010, that requires some high-end hardware (the app needs to bite and chew on about 50 gigs ...

1 2