redis-rpc 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.markdown +7 -4
- data/examples/client.rb +1 -1
- data/examples/server.rb +1 -1
- data/lib/redis-rpc/version.rb +1 -1
- data/redis-rpc.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8b39d936035d3ed70f13c3b547a77964d30622ae
|
4
|
+
data.tar.gz: 450f0a57a5a00d61ba149e0d811b5df3d2920b2a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 647e5f0e65306e8ccd535a44cf66cd340d3a1b91f0b7b053086f7d4c070431af7eda4881dd600c29c81f06d4b28d3d1b32a0fa6f460ead41678e5a331c42ffaf
|
7
|
+
data.tar.gz: 30a6301bc1d7557846c9b9111c1d965f89476c0dfbf35a5e398828b16d9669bc58a4d2a832f67c3f62fe56dde6f6122d9fbb447e947088913e6f32e766269e19
|
data/README.markdown
CHANGED
@@ -1,10 +1,13 @@
|
|
1
1
|
RedisRpc
|
2
2
|
========
|
3
3
|
|
4
|
-
by Nathan Farrington
|
4
|
+
originated by Nathan Farrington
|
5
5
|
<http://nathanfarrington.com>
|
6
6
|
|
7
|
-
RedisRpc is the easiest to use RPC library in the world. (No small claim!).
|
7
|
+
RedisRpc is the easiest to use RPC library in the world. (No small claim!).
|
8
|
+
|
9
|
+
repackaged by Phuong Nguyen
|
10
|
+
This repo only has Ruby implementations
|
8
11
|
|
9
12
|
Introduction
|
10
13
|
------------
|
@@ -31,7 +34,7 @@ of a mutable calculator object. The clients and servers from different
|
|
31
34
|
languages are interoperable.
|
32
35
|
|
33
36
|
<img
|
34
|
-
src="
|
37
|
+
src="https://github.com/phuongnd08/redis-rpc-ruby/raw/master/docs/redisrpc_example.png"
|
35
38
|
width=438 height=238>
|
36
39
|
|
37
40
|
1. The client issues an RPC Request by using the Redis `RPUSH` command to push
|
@@ -88,7 +91,7 @@ Installation
|
|
88
91
|
The [redis-rb][redis-rb] library is required. Install using RubyGems:
|
89
92
|
|
90
93
|
```ruby
|
91
|
-
gem install
|
94
|
+
gem install redis-rpc
|
92
95
|
```
|
93
96
|
|
94
97
|
Internal Message Formats
|
data/examples/client.rb
CHANGED
data/examples/server.rb
CHANGED
data/lib/redis-rpc/version.rb
CHANGED
data/redis-rpc.gemspec
CHANGED
@@ -11,8 +11,8 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.homepage = 'http://github.com/phuongnd08/redis-rpc-ruby'
|
12
12
|
s.summary = 'Lightweight RPC for Redis'
|
13
13
|
s.description = <<-DESCRIPTION
|
14
|
-
RedisRpc is the easiest to use RPC library in the world. (No small claim!)
|
15
|
-
|
14
|
+
RedisRpc is the easiest to use RPC library in the world. (No small claim!).
|
15
|
+
This version is a repackage that only has Ruby implementation.
|
16
16
|
|
17
17
|
Redis is a powerful in-memory data structure server that is useful for building
|
18
18
|
fast distributed systems. Redis implements message queue functionality with its
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis-rpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phuong Nguyen
|
@@ -82,8 +82,8 @@ dependencies:
|
|
82
82
|
- !ruby/object:Gem::Version
|
83
83
|
version: '0'
|
84
84
|
description: |2
|
85
|
-
RedisRpc is the easiest to use RPC library in the world. (No small claim!)
|
86
|
-
|
85
|
+
RedisRpc is the easiest to use RPC library in the world. (No small claim!).
|
86
|
+
This version is a repackage that only has Ruby implementation.
|
87
87
|
|
88
88
|
Redis is a powerful in-memory data structure server that is useful for building
|
89
89
|
fast distributed systems. Redis implements message queue functionality with its
|