Skip to main content

PostgreSQL - Count() Performance Boost

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· 4 min read
Florian Horn
Business Analyst Digital Sales

Counting is a slow measure in Postgresql, and it is even slower with a lot of data and complex statements. This issue is related with the kind of how the data consistency is implemented. As a result Postgresql must check the visiblity of all rows first and so it has to iterate over them all.

PHPBenelux 2016 conference

· One min read
Stephan Hochdörfer
Head of IT Business Operations

Vom 29.01.2015 bis zum 30.01.2015 findet in Antwerpen bereits zum siebten Mal in Folge die phpBenelux Konferenz statt. Ich freue mich wieder einmal, als Sprecher eingeladen worden zu sein. In meinem Vortrag "Jenkins for PHP Projects" werde ich aufzeigen wie wir Jenkins für unsere PHP Projekte verwenden und wie bsp. die Zusammenarbeit mit unserer internen Satis Instanz funktioniert.

Cache Breaking your Sencha application

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· 2 min read
Michael Spahn
Michael Spahn

Cache is a great thing, but sometimes it causes problems. For example deploying the latest web app but users still having cached JS, CSS files and more cached in their browser. This is not a bad thing in a lot of cases, but consider, you did an API change and the cached JS is still accessing the old API.

Adroit - the ADR/PSR7 middleware

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· One min read
Stephan Hochdörfer
Head of IT Business Operations

In the course of pushing a few of our "internal" components to the public, it is about time to release the current version of Adroit which is our "smart" (pun intended) ADR/PSR-7 middleware implementation.

Improving your Disco configuration

This blog post might be outdated!
This blog post was published more than one year ago and might be outdated!
· 2 min read
Stephan Hochdörfer
Head of IT Business Operations

Last week we open-sourced our DI container called Disco (Dependency Injection Container). The general feedback on Twitter was really good, especially since we decided to go down the "Annotation" route which a lot of people do not really like (me included). Relying on a single class for the configuration seems a bit limited but traits will come in pretty handy. Let me show you what I mean.