Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit e1bf83c

Browse files
Simran-Bnerpaula
andauthored
Remove more references to obsolete versions (#1169)
Co-authored-by: Paula Mihu <97217318+nerpaula@users.noreply.github.com>
1 parent 3f13b3c commit e1bf83c

File tree

74 files changed

+156
-238
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+156
-238
lines changed

3.10/appendix-glossary.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Collections contain documents of a specific type. There are currently two types:
1717
Collection Identifier
1818
---------------------
1919

20-
A collection identifier identifies a collection in a database. It is a string value and is unique within the database. Up to including ArangoDB 1.1, the collection identifier has been a client's primary means to access collections. Starting with ArangoDB 1.2, clients should instead use a collection's unique name to access a collection instead of its identifier.
20+
A collection identifier identifies a collection in a database. It is a string value and is unique within the database. Clients should use a collection's unique name to access a collection instead of its identifier.
2121

2222
ArangoDB currently uses 64bit unsigned integer values to maintain collection ids internally. When returning collection ids to clients, ArangoDB will put them into a string to ensure the collection id is not clipped by clients that do not support big integers. Clients should treat the collection ids returned by ArangoDB as
2323
opaque strings when they store or use it locally.
@@ -179,7 +179,7 @@ Fulltext Index
179179
The fulltext index type is deprecated from version 3.10 onwards.
180180
{% endhint %}
181181

182-
A fulltext index can be used to find words, or prefixes of words inside documents. A fulltext index can be defined on one attribute only, and will include all words contained in documents that have a textual value in the index attribute. Since ArangoDB 2.6 the index will also include words from the index attribute if the index attribute is an array of strings, or an object with string value members.
182+
A fulltext index can be used to find words, or prefixes of words inside documents. A fulltext index can be defined on one attribute only, and will include all words contained in documents that have a textual value in the index attribute. The index will also include words from the index attribute if the index attribute is an array of strings, or an object with string value members.
183183

184184
For example, given a fulltext index on the `translations` attribute and the following documents, then searching for `лиса` using the fulltext index would return only the first document. Searching for the index for the exact string `Fox` would return the first two documents, and searching for `prefix:Fox` would return all three documents:
185185

3.10/architecture-deployment-modes-active-failover-architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ A multi-datacenter solution currently supported is the Datacenter-to-Datacenter
5858
{% endhint %}
5959

6060
Operative Behavior
61-
-------------------
61+
------------------
6262

6363
In contrast to the normal behavior of a single-server instance, the Active-Failover
6464
mode will change the behavior of ArangoDB in some situations.

3.10/data-modeling-collections.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ This method is a database method and is documented in detail at [Database Method
6161

6262
### Synchronous replication
6363

64-
Starting in ArangoDB 3.0, the distributed version offers synchronous
64+
The distributed version offers synchronous
6565
replication, which means that there is the option to replicate all data
6666
automatically within the ArangoDB cluster. This is configured for sharded
6767
collections on a per collection basis by specifying a "replication factor"

3.10/data-modeling-documents-document-address.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,8 @@ Document Revision
8787
Multiple Documents in a single Command
8888
--------------------------------------
8989

90-
Beginning with ArangoDB 3.0 the basic document API has been extended
91-
to handle not only single documents but multiple documents in a single
92-
command. This is crucial for performance, in particular in the cluster
90+
The document API can handle not only single documents but multiple documents in
91+
a single command. This is crucial for performance, in particular in the cluster
9392
situation, in which a single request can involve multiple network hops
9493
within the cluster. Another advantage is that it reduces the overhead of
9594
individual network round trips between the client

3.10/foxx-reference-routers-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The request object specifies the following properties:
2020
* **arangoVersion**: `number`
2121

2222
The numeric value of the `x-arango-version` header or the numeric version
23-
of the ArangoDB server (e.g. `30102` for version 3.1.2) if no valid header
23+
of the ArangoDB server (e.g. `30807` for version 3.8.7) if no valid header
2424
was provided.
2525

2626
* **auth**: `object | null`

3.10/http/async-results-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and [HttpJobPutCancel](#managing-async-results-via-http) for details.
3333

3434
### Fire and Forget
3535

36-
To mitigate client blocking issues, ArangoDB since version 1.4. offers a generic mechanism
36+
To mitigate client blocking issues, offers a generic mechanism
3737
for non-blocking requests: if clients add the HTTP header *x-arango-async: true* to their
3838
requests, ArangoDB will put the request into an in-memory task queue and return an HTTP 202
3939
(accepted) response to the client instantly. The server will execute the tasks from

3.10/http/collection.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,15 @@ Collection Identifier
2323
---------------------
2424

2525
A collection identifier lets you refer to a collection in a database.
26-
It is a string value and is unique within the database. Up to including
27-
ArangoDB 1.1, the collection identifier has been a client's primary
28-
means to access collections. Starting with ArangoDB 1.2, clients should
29-
instead use a collection's unique name to access a collection instead of
30-
its identifier.
26+
It is a string value and is unique within the database. Clients should use
27+
a collection's unique name to access a collection instead of its identifier.
3128
ArangoDB currently uses 64bit unsigned integer values to maintain
3229
collection ids internally. When returning collection ids to clients,
3330
ArangoDB will put them into a string to ensure the collection id is not
3431
clipped by clients that do not support big integers. Clients should treat
3532
the collection ids returned by ArangoDB as opaque strings when they store
3633
or use them locally.
3734

38-
Note: collection ids have been returned as integers up to including ArangoDB 1.1
39-
4035
Collection Name
4136
---------------
4237

3.10/http/document-address-and-etag.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@ The revision of a document can be checking using the HTTP method *HEAD*.
104104
Multiple Documents in a single Request
105105
--------------------------------------
106106

107-
Beginning with ArangoDB 3.0 the basic document API has been extended
108-
to handle not only single documents but multiple documents in a single
109-
request. This is crucial for performance, in particular in the cluster
107+
The document API can handle not only single documents but multiple documents in
108+
a single request. This is crucial for performance, in particular in the cluster
110109
situation, in which a single request can involve multiple network hops
111110
within the cluster. Another advantage is that it reduces the overhead of
112111
the HTTP protocol and individual network round trips between the client
Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
11
---
22
layout: default
3-
description: Previous versions of ArangoDB allowed starting, stopping and configuring thereplication logger
3+
description: >-
4+
You can query the current state of the logger and fetch the latest changes
5+
written by the logger
46
---
57
Replication Logger Commands
68
===========================
79

8-
Previous versions of ArangoDB allowed starting, stopping and configuring the
9-
replication logger. These commands are superfluous in ArangoDB 2.2 as all
10-
data-modification operations are written to the server's write-ahead log and are
11-
not handled by a separate logger anymore.
10+
All data-modification operations are written to the server's write-ahead log and are
11+
not handled by a separate replication logger.
1212

13-
The only useful operations remaining since ArangoDB 2.2 are to query the current state
14-
of the logger and to fetch the latest changes written by the logger. The operations
15-
will return the state and data from the write-ahead log.
13+
You can query the current state of the logger and fetch the latest changes
14+
written by the logger. The operations return the state and data from the
15+
write-ahead log.
1616

17-
<!-- arangod/RestHandler/RestReplicationHandler.cpp -->
1817
{% docublock get_api_replication_logger_return_state %}
1918

2019
To query the latest changes logged by the replication logger, the HTTP interface
@@ -23,13 +22,13 @@ also provides the `logger-follow` method.
2322
This method should be used by replication clients to incrementally fetch updates
2423
from an ArangoDB database.
2524

26-
<!-- arangod/RestHandler/RestReplicationHandler.cpp -->
2725
{% docublock get_api_replication_logger_follow %}
2826

2927
To check what range of changes is available (identified by tick values), the HTTP
3028
interface provides the methods `logger-first-tick` and `logger-tick-ranges`.
3129
Replication clients can use the methods to determine if certain data (identified
3230
by a tick *date*) is still available on the Leader.
31+
3332
{% docublock get_api_replication_logger_first_tick %}
34-
{% docublock get_api_replication_logger_tick_ranges %}
3533

34+
{% docublock get_api_replication_logger_tick_ranges %}

3.10/indexing-fulltext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Introduction to Fulltext Indexes
1919
A fulltext index can be used to find words, or prefixes of words inside documents.
2020

2121
A fulltext index can be defined on one attribute only, and will include all words contained in
22-
documents that have a textual value in the index attribute. Since ArangoDB 2.6 the index
22+
documents that have a textual value in the index attribute. The index
2323
will also include words from the index attribute if the index attribute is an array of
2424
strings, or an object with string value members.
2525

0 commit comments

Comments
 (0)