| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 11 months |
| seen | 29 mins ago | |
| stats | profile views | 2,427 |
-
|
Mar 18 |
asked | SQL Server 2012: How can a column-store index provide multiple columns at once? |
|
Mar 18 |
comment |
Entity Framework and stored procedure returning temp table Issues You could have an sproc regenerate the view definition every, say, 15minutes. The view would be accurate that way within at most 15min. If you want to stick to the cursors solution, please post some code. |
|
Mar 18 |
answered | Entity Framework and stored procedure returning temp table Issues |
|
Mar 18 |
awarded | Peer Pressure |
|
Mar 18 |
comment |
C# slow searches Binary search is not especially fast because the branches are hard to predict for the CPU. Don't be surprised if it is much slower than hashing. |
|
Mar 18 |
comment |
StreamReader.ReadToEnd reading differently second time around IMHO the byte order mark can have different length in different encodings. Also, I think it is two bytes long? |
|
Mar 18 |
answered | How to store 15 x 100 million 32-byte records for sequential access? |
|
Mar 18 |
comment |
What does this SELECT statement do? It will result in unique row numbers, but their ordering might not be sequential. Only the order-by-clause at the very end of the query guarantees ordering. The one in the over clause does not. For example you can use different orderings in two different over-clauses. If you still think that it would be ok to put such code into production because "it works on my machine" please do not come near my codebase ;-) |
|
Mar 17 |
comment |
Linq to sql parallel for submit changes Yes. Luke has actually taken this suggestion and added sample code for it. The way I do this is to implement an extension method that splits my list into chunks over which I can then Parallel.ForEach very conveniently. |
|
Mar 17 |
comment |
Linq to sql parallel for submit changes Excellent! +1 __ |
|
Mar 17 |
comment |
ProfileBase.GetProperty() does not work on a new thread I added an example. |
|
Mar 17 |
revised |
ProfileBase.GetProperty() does not work on a new thread added 475 characters in body |
|
Mar 17 |
comment |
ProfileBase.GetProperty() does not work on a new thread Yes. Copy the existing HttpContext from your request's thread over to the new thread. You need to save it in a new variable before you start the thread. |
|
Mar 17 |
comment |
ProfileBase.GetProperty() does not work on a new thread HttpContext.Current = ctx; ;-) You can set it to whatever value you want. |
|
Mar 17 |
comment |
ProfileBase.GetProperty() does not work on a new thread I think ThreadPool.QueueUserWorkItem will transfer the execution context. You could try that instead of a new thread. |
|
Mar 17 |
comment |
ProfileBase.GetProperty() does not work on a new thread There are two: You can either use the setter of HttpContext.Current and set it in manually, or you can transfer the LogicalCallContext (HttpContext.Current comes from that). I have no idea how I'd do the latter. |
|
Mar 17 |
answered | ProfileBase.GetProperty() does not work on a new thread |
|
Mar 17 |
comment |
DynamoDB Database Design (Key-Value Store, noSQL) Generally, NoSQL data-stores offer less features. They are not exactly known for developer productivity. |
|
Mar 17 |
answered | Linq to sql parallel for submit changes |
|
Mar 17 |
comment |
Linq to sql parallel for submit changes What happens when you insert batches of rows? Probably, the parallel version will start to become faster now. You are measuring the worst possible case for parallelism because you are instantiating a new datacontext all the time. |