| bio | website | 12titans.net/p/default.aspx |
|---|---|---|
| location | New Zealand | |
| age | ||
| visits | member for | 3 years, 6 months |
| seen | yesterday | |
| stats | profile views | 857 |
Author of Ultra-Fast ASP.NET: Build Ultra-Fast and Ultra-Scalable web sites using ASP.NET and SQL Server (Apress)
I offer consulting services. Please see my website for details.
|
2d |
comment |
Delete session from database after it expired? If DB performance is important to you, you should avoid running DBCC SHRINKFILE on a production database. Shrinking the database files means that when they grow again, the files aren't contiguous, which increases disk seeks. Also, the process of growing files is fairly expensive. |
|
2d |
comment |
Delete session from database after it expired? I'm not aware of any open source alternative SQL providers. This isn't the only problem with the standard provider, so what I often suggest for large projects is writing your own replacement provider. I've done this myself; the level of effort involved isn't as large as you might think, and the performance gains can be significant. |
|
May 4 |
awarded | Nice Answer |
|
May 1 |
comment |
Will a binary search on LinkedList to insert a value into the middle of a sorted value list increase performance? One caution: SortedDictionary and SortedList don't support duplicate keys, whereas LinkedList does. |
|
Apr 15 |
awarded | Revival |
|
Feb 17 |
comment |
Possible to avoid elevated privileges to read text files in my app's Program Files folder? Very interesting! It turns out that the default is FileAccess.ReadWrite, not FileAccess.Read as I assumed. Thanks again. |
|
Feb 16 |
revised |
Possible to avoid elevated privileges to read text files in my app's Program Files folder? added 31 characters in body |
|
Feb 16 |
comment |
Possible to avoid elevated privileges to read text files in my app's Program Files folder? That fixed it; thanks. I don't understand why the file isn't readable by default, though. |
|
Feb 16 |
accepted | Possible to avoid elevated privileges to read text files in my app's Program Files folder? |
|
Feb 16 |
comment |
Possible to avoid elevated privileges to read text files in my app's Program Files folder? Thanks. I realize I can do that as a last resort. My question was whether there's an alternative. |
|
Feb 16 |
revised |
Possible to avoid elevated privileges to read text files in my app's Program Files folder? added 183 characters in body; edited tags |
|
Feb 15 |
asked | Possible to avoid elevated privileges to read text files in my app's Program Files folder? |
|
Jan 30 |
comment |
WPF Image Button formatting With this approach, when I hover over the image, it fades out and becomes invisible. |
|
Jan 5 |
comment |
Programmatically generating, storing and using X.509 certificates in C# Thanks for the info about certificate requests. One reason I don't want to use command-line utilities is that they really aren't suitable for large-scale, high-volume back-end processing. |
|
Jan 5 |
comment |
Programmatically generating, storing and using X.509 certificates in C# Good, helpful info. Thanks. |
|
Jan 1 |
comment |
Why does my multithreaded code to fill grids sometimes fail? Are you asking this in an attempt to understand the theory, or is this intended to be actual production code? While it's possible to make simultaneous SQL Server commands work this way, it's definitely not the recommended approach. Are you using .NET 4.5? |
|
Jan 1 |
asked | Programmatically generating, storing and using X.509 certificates in C# |
|
Dec 30 |
comment |
How do I get Windows to go as fast as Linux for compiling C++? After making some of the changes suggested above, the second run of "ls -R" for the chromium tree takes 4.3 seconds for me (vs 40 seconds in the OP). "dir /s" takes about a second. Switching to an SSD didn't help for enumeration alone, but I suspect it will help for compiles. |
|
Dec 29 |
awarded | Necromancer |
|
Dec 14 |
comment |
Creating tabs at the bottom of a LayoutDocument in AvalonDock 2.0? Thanks for your answer. Unfortunately, I think my question was incomplete (I've updated it). I'm looking for a way to add tabs to the "inside" of a document--like views. If you can do that by applying a style to the DockingManager, how do you define those views within a document? |