Skip to content

v0.5.0-alpha

Pre-release
Pre-release
Compare
Choose a tag to compare
@lucassouzavieira lucassouzavieira released this 31 Oct 23:09

One more pre-release version of PHP ODM for ArangoDB

Added

  • Full collections indexes management
    • Implemented ArangoDB\Collection\Index, ArangoDB\Collection\FullTextIndex, ArangoDB\Collection\GeoSpatialIndex, ArangoDB\Collection\HashIndex, ArangoDB\Collection\SkipListIndex, ArangoDB\Collection\PersistentIndex, and ArangoDB\Collection\TTLIndex classes to manage the suported indexes on ArangoDB.
    • Recover all collection indexes calling ArangoDB\Collection\Collection::getIndexes().
    • Create a new index on collection calling ArangoDB\Collection\Collection::addIndex().
    • Drops a index on collection calling ArangoDB\Collection\Collection::dropIndex().
  • Access to server time - ArangoDB\Admin::time()

Changed

  • Minor fixes on ArangoDB\Collection\Collection class.