infinispan / infinispan/python-client

Tutorial

Open
#7 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
C++
Stars
17
Forks
12
PR merge metrics
No merged PRs in 30d

Description

Feel free to use and enhance:
## 1) Infinispan with Python
### 1.1) Download Infinispan

```
e.g. infinispan-5.1.6.FINAL-all.zip from
[http://www.jboss.org/infinispan/downloads]
```
### 1.2) Extract Infinispan package

```
unzip infinispan-5.1.6.FINAL-all.zip
```
### 1.3) Run stand-alone Infinispan server

```
cd infinispan-5.1.6.FINAL
bin/startServer.sh -r hotrod
```
### 1.4) Set up virtualenv for testing

```
virtualenv infinispan-test
```
### 1.5) Install Infinispan Python module

```
infinispan-test/bin/pip install infinispan
```
### 1.6) Run example from Python module docs

```
[10:43:59][tul@testbase][~]% infinispan-test/bin/python
Python 2.6.6 (r266:84292, Dec 26 2010, 22:31:48)
[GCC 4.4.5] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from infinispan.remotecache import RemoteCache
>>> remote_cache = RemoteCache()
>>> remote_cache.put("foo", "bar")
True
>>> remote_cache.get("foo")
'bar'
```

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Review the tutorial text in the issue and locate the repository's documentation conventions first. Clarify which Python and Infinispan versions and commands should be supported, then update the tutorial and verify each documented step; completion requires maintainer agreement on the scope and wording.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
documentation
Issue type
Documentation
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
30/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.