Intel provides a software package to significantly speed up the Android emulator on processors with Hyper-V: the Intel® Hardware Eccelerated Execution Manager (HAXM).
Tag Archives: Performance
Presentation About Rails Database Optimization
Here are the English slides about how to optimize database queries in Ruby On Rails. I have showed this presentation at the Ruby User Group Hamburg at the 9th August 2012.
(Deutsch) Ruby On Rails Datenbankoptimierung Teil 2
[Zu Teil 1] Verknüpfungen mit dem SQL-join Relationale Datenbanken erlauben es, Tabellen miteinander zu verknüpfen. In SQL gibt es für diese Verknüpfung das Schlüsselwort “JOIN“. Eine solche Verknüpfung kann theoretisch sehr frei spezifiziert werden, in der Praxis wird man fast immer aufgrund der Gleichheit bestimmter ID-Spalten verknüpfen. In unserem Beispiel eines Schiffsinformationssystems haben wir eine …
Continue reading “(Deutsch) Ruby On Rails Datenbankoptimierung Teil 2”
Optimize the Ruby-on-Rails database – part one
Reduce the number of database queries A typical web application does many database queries before it delivers the response page to the web browser. The application needs to wait for the response of each of these database queries. It gets an additional slow down because of process switching. The database server must analyze each request, …
Continue reading “Optimize the Ruby-on-Rails database – part one”