Strona głównaUżytkownik

slawomirbrys | użytkownik

slawomirbrys
slawomirbrys
20,1
3743 dni, 3 godziny, 36 minut temu
6 maja, 2012
dotnetomaniak.pl

This article is a continuation of my previous article. It shows how to create a custom intern pool that does not fragment the LOH and how to further improve it.

Tagi: C#, memory
Dziel się z innymi:
[EN] String Hazards - Custom Intern Pool | badamczewski.blogspot.com

Inne 3733 dni, 15 godzin, 26 minut temu Badamczewski 104 źrodło rozwiń

This article describes some of the pitfalls that one may encounter while working with string in a high frequency environment. Most notably it exposes some of the problems with string Intern Pool.

Tagi: C#, Memory leak
Dziel się z innymi:
[EN] String Hazards | badamczewski.blogspot.com

Inne 3738 dni, 10 godzin, 49 minut temu Badamczewski 112 źrodło rozwiń

Lock free data structures are very handy for concurrent programs especially that the number of cores increases. The benefits of such data structures is that they never acquire a lock, instead they do a form of a spin lock, where a local copy of the data must be stored and exchanged or updated by an processors atomic operation (like "compare and swap" or "fetch and add") only when the global value and the local copy match, otherwise we repeat the whole procedure. Almost every lock free data structure foll...

Tagi: C#
Dziel się z innymi:
[EN] Lock Free Work Stealing Queue | Passion of Programming in .NET

Inne 4263 dni, 17 godzin, 39 minut temu http://badamczewski.blogspo... 70 źrodło rozwiń

When working with applications that utilize lots of threads and those threads arent particularry long running we can stumble upon a problem that we may lose most of the processing time for thread context switches, so it would be desirable to do all of the processing on a limited number of threads, usualy this can be done using a queue of delegates that each thread will process, but sometimes we cannot have that and still w...

Dziel się z innymi:
[EN] Fibers (series, part 1) | Passion of Programming in .NET

Inne 4319 dni, 18 godzin, 33 minuty temu http://badamczewski.blogspo... 157 źrodło rozwiń

Wielu programistów i firm z branży IT często mówi, że potrafi wytwarzać oprogramowanie wysokiej jakości i że bardzo ważnym jest, aby o tą jakość zabiegać. Nie ma w tym nic dziwnego – wszyscy jesteśmy gotowi zgodzić się, że jakość powinna być możliwie wysoka. Problem pojawia się jednak w momencie, gdy trzeba doprecyzować pojęcia.

Dziel się z innymi:
Czym jest jakość oprogramowania?

Architektura 4367 dni, 5 godzin, 9 minut temu houp 259 źrodło rozwiń

W SQL Server 2012 pojawiło się sześć nowych funkcji związanych z operacjami na typach daty i czasu. Są to funkcje: DateFromParts, SmallDateTimeFromParts, DateTimeFromParts, DateTime2FromParts, DateTimeOffsetFromParts, EOMonth.

Tagi: SQL, sql server, T-SQL
Dziel się z innymi:
Nowości w SQL Server 2012 – funkcje daty i czasu « Developer notes

Bazy danych i XML 4368 dni, 4 godziny, 26 minut temu psz750 166 źrodło rozwiń

To jest mój pierwszy post, ale od czegoś trzeba zacząć. Wybacz więc niedociągnięcia :). Na pierwszy temat rzucam porównanie wydajności kilku bibliotek (framework'ów) do wstrzykiwania zależności (Dependency Injection), które jest częścią paradygmatu odwróconego sterowania (Inversion of Control) - więcej można przeczytać tutaj. Ostatnio przeczytałem, że znaczna większość programistów korzysta z tych dobrodziejstw. Niby dobrze, o ile wiemy z czym mamy do czynienia. Część bibliotek jest przeładowana ...

Dziel się z innymi:
Sławomir Bryś: Porównanie IoC

Architektura 4363 dni, 6 godzin, 43 minuty temu http://slawomirbrys.blogspo... 386 źrodło rozwiń

Najaktywniejsi w tym miesiącu