//////////////////////////////////////////////////////////////////////////////// /// @brief over the wire protocol /// /// @file /// /// DISCLAIMER /// /// Copyright 2012 triagens GmbH, Cologne, Germany /// /// Licensed under the Apache License, Version 2.0 (the "License"); /// you may not use this file except in compliance with the License. /// You may obtain a copy of the License at /// /// http://www.apache.org/licenses/LICENSE-2.0 /// /// Unless required by applicable law or agreed to in writing, software /// distributed under the License is distributed on an "AS IS" BASIS, /// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. /// See the License for the specific language governing permissions and /// limitations under the License. /// /// Copyright holder is triAGENS GmbH, Cologne, Germany /// /// @author Dr. Frank Celler /// @author Copyright 2012, triAGENS GmbH, Cologne, Germany //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /// @page HttpIndexTOC /// ///
    ///
  1. @ref HttpIndexIntro
  2. ///
  3. @ref HttpIndexResource
  4. ///
  5. @ref HttpIndexHttp /// @copydetails HttpIndexCallsTOC ///
  6. ///
//////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /// @page HttpIndexCallsTOC /// ///
    ///
  1. @ref HttpIndexRead "GET /_api/index/collection-identifier/index-identifier"
  2. ///
  3. @ref HttpIndexCreate "POST /_api/index/collection-identifier"
  4. ///
  5. @ref HttpIndexDelete "DELETE /_api/index/collection-identifier/index-identifier"
  6. ///
  7. @ref HttpIndexReadAll "GET /_api/index/collection-identifier"
  8. ///
//////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// /// @page HttpIndex HTTP Interface for Indexes /// /// This is an introduction to AvocadoDB's Http interface for indexes. /// ///
/// @copydoc HttpIndexTOC ///
/// /// @section HttpIndexIntro Indexes /////////////////////////////////// /// /// @copydoc GlossaryIndex /// /// @copydoc GlossaryIndexGeo /// /// @copydoc GlossaryIndexHash /// /// @copydoc GlossaryIndexSkiplist /// /// The basic operations (create, read, update, delete) for documents are mapped /// to the standard HTTP methods (POST, GET, PUT, DELETE). /// /// @section HttpIndexResource Address of an Index ////////////////////////////////////////////////// /// /// All indexes in AvocadoDB have an unique identifier with a collection. This /// index identifier identifies an index and is managed by AvocadoDB. All /// indexes are found under the URI /// /// @LIT{http://@FA{server}:@FA{port}/_api/index/@FA{collection-identifier}/@FA{index-identifier}} /// /// For example: Assume that the collection identifier is @LIT{7254820}, and the /// index identifier is @LIT{63563528} then the URL of that index is: /// /// @LIT{http://localhost:8529/_api/collection/7254820/63563528} /// /// @section HttpIndexHttp Working with Indexes using HTTP ////////////////////////////////////////////////////////// /// /// @anchor HttpIndexRead /// @copydetails JSF_GET_api_index ///
/// /// @anchor HttpIndexCreate /// @copydetails JSF_POST_api_index ///
/// /// @anchor HttpIndexDelete /// @copydetails JSF_DELETE_api_index ///
/// /// @anchor HttpIndexReadAll /// @copydetails JSF_GET_api_indexes //////////////////////////////////////////////////////////////////////////////// // Local Variables: // mode: c++ // mode: outline-minor // outline-regexp: "^\\(/// @brief\\|/// {@inheritDoc}\\|/// @addtogroup\\|// --SECTION--\\|/// @page\\|/// @\\}\\)" // End: