¡@

Home 

c# Programming Glossary: insertions

What's the fastest way to bulk insert a lot of data in SQL Server (C# client)

http://stackoverflow.com/questions/24200/whats-the-fastest-way-to-bulk-insert-a-lot-of-data-in-sql-server-c-client

into the main table to keep the size of the table where insertions are happening small Anything else Based on the responses I have..

ReaderWriterLockSlim vs. Monitor

http://stackoverflow.com/questions/407238/readerwriterlockslim-vs-monitor

holds n other Dictionary TKey TValue and distributes that insertions by the HashCode of the key to the invidual sub dictionaries... collisions is pretty low on a 4 core machine. For parallel insertions i locked the Add method with a ReaderWriterLockSlim locking..

SQLite .NET performance, how to speed up things?

http://stackoverflow.com/questions/4356363/sqlite-net-performance-how-to-speed-up-things

how to speed up things On my system ~86000 SQLite insertions took up to 20 minutes means ~70 insertions per second. I have.. ~86000 SQLite insertions took up to 20 minutes means ~70 insertions per second. I have to do millions how can I speed up it Calling.. connection.Close return retval As you can see insertions are very simple ones. c# .net performance sqlite insert share..

Why is ConcurrentBag<T> so slow in .Net (4.0)? Am I doing it wrong?

http://stackoverflow.com/questions/4785622/why-is-concurrentbagt-so-slow-in-net-4-0-am-i-doing-it-wrong

well as or better than locking a list for up to 1 million insertions. Above 1 million locking seemed to be much faster sometimes..

No ConcurrentList<T> in .Net 4.0?

http://stackoverflow.com/questions/6601611/no-concurrentlistt-in-net-4-0

T that is lockless and thread safe. In particular random insertions and removals are not going to work unless you also forget about..

WPF's ICollectionView.filter with large sets of data

http://stackoverflow.com/questions/851545/wpfs-icollectionview-filter-with-large-sets-of-data

of items or if you perform dynamic operations such as insertions and deletions. If this is your scenario you should consider..