Sign in
apache
/
ignite
/
refs/heads/IGNITE-7595
/
.
/
docs
/
_docs
/
code-snippets
/
python
/
create_cache.py
blob: 7c545843214ab7d2c669df42fcb06dc4ede5ae10 [
file
]
from
pyignite
import
Client
# Open a connection
client
=
Client
()
client
.
connect
(
'127.0.0.1'
,
10800
)
# Create a cache
my_cache
=
client
.
create_cache
(
'myCache'
)