Hi, I was having the same problem as omills. (xataface-1.3rc6)
I searched through the code and found that line 699 at Dataface/IO.php never resolved as true:
- Code: Select all
if ( isset($app->_conf['_index']) and @$app->_conf['_index'][$record->table()->_tablename]){
I removed the underscore in front of '_tablename' call and now the indexing works as intended:
- Code: Select all
if ( isset($app->_conf['_index']) and @$app->_conf['_index'][$record->table()->tablename]){
I noticed that '_tablename' is a variable in the record class and using
- Code: Select all
if ( isset($app->_conf['_index']) and @$app->_conf['_index'][$record->_tablename]){
also worked fine.
I just started building a site with Xataface and I'm having a blast!

It's exactly what I was looking for.
Keep the good work.