Multiple items selection in Persistence

Using mysql persistence, I want to store some Items of interest.
To make it readable, I used the * to select a series of Items, unfortunately this doesn’t seems to work in OH2b4

Strategies {
    //default = everyChange
    everyMinute : "0 * * * * ?" 
    everyFive   : "0 */5 * * * ?"
    everyTen    : "0 */10 * * * ?"
    everyHour   : "0 0 * * * ?" 
    everyDay    : "0 0 0 * * ?"
}

Items {
    //outlet1, outlet2, outlet3, outlet4 : strategy = everyChange, restoreOnStartup
    outlet* : strategy = everyChange, restoreOnStartup  
}

Using the first line, all works fine, is this a bug or missing feature ?

-ben

Hello!

Do you have a group item “outlet” that contains all of the other outlet items? It’s confusing, but * after the name in Items section doesn’t mean “all items that begin with outlet”, but it’s a notation used to persists all items contained in the group outlet, but not the group itself.

Best regards,
Davor

Thanks!

Clear now, it will probably solve the problem.

-ben