File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44# You can set these variables from the command line.
55SPHINXOPTS =
66SPHINXBUILD = sphinx-build
7- SPHINXPROJ = ApacheIgnitebinaryclientPythonAPI
7+ SPHINXPROJ = GridGainbinaryclientPythonAPI
88SOURCEDIR = .
99BUILDDIR = generated
1010
Original file line number Diff line number Diff line change @@ -306,7 +306,7 @@ can not be used in a Python identifier, for example:
306306- `$ `, a common case for Scala classes,
307307- `+ `, internal class name separator in C#,
308308
309- then `pygridgain ` can not maintain this match. In such cases `pyignite ` tries
309+ then `pygridgain ` can not maintain this match. In such cases `pygridgain ` tries
310310to sanitize a type name to derive a “good” dataclass name from it.
311311
312312If your code needs consistent naming between the server and the client, make
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ This directory contains the following example files:
55- ` binary_basics.py ` − basic operations with Complex objects,
66- ` binary_types.py ` - read SQL table as a key-value cache,
77- ` create_binary.py ` − create SQL row with key-value operation,
8- - ` failover.py ` − fail-over connection to Ignite cluster,
8+ - ` failover.py ` − fail-over connection to GridGain cluster,
99- ` get_and_put.py ` − basic key-value operations,
1010- ` migrate_binary.py ` − work with Complex object schemas,
1111- ` scans.py ` − cache scan operation,
12- - ` sql.py ` − use Ignite SQL,
12+ - ` sql.py ` − use GridGain SQL,
1313- ` type_hints.py ` − type hints.
1414
1515For the explanation of the examples please refer to the
1616[ Examples of usage] ( https://pygridgain.readthedocs.io/en/latest/examples.html )
17- section of the ` pyignite ` documentation.
17+ section of the ` pygridgain ` documentation.
Original file line number Diff line number Diff line change 3535
3636class ObjectArrayObject (GridGainDataType ):
3737 """
38- Array of Ignite objects of any consistent type. Its Python representation
38+ Array of GridGain objects of any consistent type. Its Python representation
3939 is tuple(type_id, iterable of any type). The only type ID that makes sense
4040 in Python client is :py:attr:`~OBJECT`, that corresponds directly to
4141 the root object type in Java type hierarchy (`java.lang.Object`).
@@ -187,10 +187,10 @@ class CollectionObject(GridGainDataType):
187187 Represented as tuple(hint, iterable of any type) in Python. Hints are:
188188
189189 * :py:attr:`~pygridgain.datatypes.complex.CollectionObject.USER_SET` −
190- a set of unique Ignite thin data objects. The exact Java type of a set
190+ a set of unique GridGain thin data objects. The exact Java type of a set
191191 is undefined,
192192 * :py:attr:`~pygridgain.datatypes.complex.CollectionObject.USER_COL` −
193- a collection of Ignite thin data objects. The exact Java type
193+ a collection of GridGain thin data objects. The exact Java type
194194 of a collection is undefined,
195195 * :py:attr:`~pygridgain.datatypes.complex.CollectionObject.ARR_LIST` −
196196 represents the `java.util.ArrayList` type,
Original file line number Diff line number Diff line change 1- # these pip packages are necessary for the pyignite to run
1+ # these pip packages are necessary for the pygridgain to run
22
33typing==3.6.6; python_version<'3.5'
44attrs==18.1.0
You can’t perform that action at this time.
0 commit comments