True this fix offers only a slight improvement when using count is 0, but using count < 1 is still better than first item is empty (in some cases significantly).
Using first item is empty:
In cases where the first item is empty (i.e. there are no existing items in the database), it costs 0.3 WU for the search.
In cases where the first item is not empty (i.e. there is an existing item in the database) it will cost 0.3WU for the search, 0.015WU to retrieve the first item, plus however many WU it costs for the amount of data retrieved.
Using count < 1 will only ever cost 0.2WU.
6 Likes