Group persistence not working (?)

Using latest OH of Dec’17 and JDBC (mysql), Items do not systematically get persistence. I think that it boils down to the persistence strategy (everyUpdate vs everyChange - see https://github.com/openhab/openhab1-addons/wiki/Persistence) and to the autoupdate flag, which introduces another issue. See below.

For example:
items file:

Group gPersist
Number Temperature_Cave_Bureau		"Bureau [%.1f °C]"		<temperature>	(gPersist)	{ knx="<1/3/50" }
Number Temperature_Cave_Hall		"Hall [%.1f °C]"		<temperature>	(gPersist)	{ knx="<1/3/70" }
Number Weather_Temperature 				"Température extérieure [%.1f °C]"	<temperature> (gPersist)  { knx="<1/7/101" }
Number Weather_Brightness 					"Clarté [%.1f Lux]"		<sun_clouds>  (gPersist)  { knx="<14/5/0" }

Number electricityTotalActivePower "Active Power [%.1f WH]" (gElectricityData,gPersist) {autoupdate="false", knx="<13.010:8/6/10"}

/* Number electricityTotalReactivePower "Reactive Power [%.1f VA]" (gElectricityData,gPersist) {autoupdate="false", knx="<13:010:8/6/11"} */

Number electricityTotalInstantPower "Instant Total Power [%.1f kWH]" (gElectricityData,gPersist) {autoupdate="false", knx="<8/6/0"}

Number electricityPhase1InstantPower "Instant Power L1 [%.1f kWH]" (gElectricityData,gPersist) {autoupdate="false", knx="<8/6/1"}

Number electricityPhase2InstantPower "Instant Power L2 [%.1f kWH]" (gElectricityData,gPersist) {autoupdate="false", knx="<8/6/2"}

Number electricityPhase3InstantPower "Instant Power L3 [%.1f kWH]" (gElectricityData,gPersist) {autoupdate="false", knx="<8/6/3"}

Number fuelLevel "Fuel level [%.3f m]" (gFuelData,gPersist) {knx="<14.001:8/6/60"}

Fresh restart after erasing tables in MySQL server.

I changed the strategy to everyUpdate, and it logs all items in gPersist but the electricity* items.

A careful analysis shows that there are the only ones with autoupdate=false. When changing to autoupdate=true, the item gets persistence.

So it solves the matter for persistence, but it creates an issue with the KNX binding echoing commands once too much to the KNX bus (see thread KNX binding repeats commands).

So I have to choose between both.

any hints on how to solve this differently?

thank you
Yves