[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

redis from mruby #1152

Merged
merged 53 commits into from
Mar 7, 2018
Merged
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
8d65fa9
add mruby redis feature
i110 Dec 27, 2016
033a9a1
Merge branch 'i110/mruby-consistent-fiber-handling' into i110/mruby-r…
i110 Mar 16, 2017
c41ad6d
tweak for mruby-redis
i110 Mar 16, 2017
4275123
fix mruby-redis gc problem
i110 Mar 16, 2017
da6c09f
Merge branch 'master' into i110/mruby-redis
i110 Mar 27, 2017
9c6034c
call ensure_connected for all commands
i110 Mar 27, 2017
b100dd5
fix redis reply allocation problem
i110 Mar 27, 2017
a9bfb96
Merge branch 'i110/mruby-consistent-fiber-handling' into i110/mruby-r…
i110 Mar 29, 2017
01b0526
Merge branch 'i110/mruby-consistent-fiber-handling' into i110/mruby-r…
i110 Apr 21, 2017
4ebc107
Merge branch 'i110/mruby-consistent-fiber-handling' into i110/mruby-r…
i110 Jun 9, 2017
f1d3f2b
fix redis reader memory issue
i110 Jun 10, 2017
5351d1a
tweak redis
i110 Jun 10, 2017
c0eeda0
raise CommandError when redis command failed
i110 Jun 10, 2017
2e33a36
define redis methods
i110 Jun 12, 2017
b803182
remove redis reader
i110 Jun 12, 2017
92226db
add error code and message in redis command callback
i110 Jun 12, 2017
64bc23d
add redis streaming command
i110 Jun 12, 2017
c904a00
fix mruby redis bugs
i110 Jun 13, 2017
f486184
add redis mruby tests
i110 Jun 13, 2017
fc7e026
install redis-server on travis
i110 Jun 13, 2017
b506c88
Merge branch 'master' into i110/mruby-redis
i110 Sep 6, 2017
f594f7c
- refactor mruby x redis
i110 Sep 7, 2017
4714f02
add connected? method to H2O::Redis
i110 Sep 7, 2017
87b1b31
Merge branch 'master' into i110/mruby-redis
i110 Sep 7, 2017
0199663
fix mruby redis gc issue
i110 Sep 7, 2017
6094301
add :db and :password option to H2O::Redis
i110 Sep 7, 2017
fdc79ee
remove unnecessary nil check
i110 Sep 19, 2017
ad1dee8
Merge remote-tracking branch 'origin/master' into i110/mruby-redis
i110 Sep 19, 2017
adfa1c3
Merge branch 'master' into i110/mruby-redis
i110 Oct 5, 2017
117a679
fix redis example client
i110 Oct 5, 2017
347699e
mruby-redis subscribe
i110 Oct 5, 2017
a5a295b
mruby-redis connect and command timeout
i110 Oct 6, 2017
65fea24
reformat
i110 Oct 6, 2017
e10def2
remove redis's fancy ascii art from test output
i110 Oct 6, 2017
3bdcdba
fix mruby redis test issue
i110 Oct 6, 2017
67f4459
set mruby redis default timeout to 5 secs
i110 Oct 6, 2017
57d3f86
fix mruby redis timeout destroying issue
i110 Oct 6, 2017
80b8950
fix mruby-redis command timeout issue
i110 Oct 6, 2017
66a627d
Merge branch 'master' into i110/mruby-redis
i110 Oct 20, 2017
70132d8
fix memory leak of mruby-redis
i110 Oct 20, 2017
6c8facb
Merge branch 'master' into i110/mruby-redis
i110 Jan 21, 2018
15c4ef7
tweak
i110 Jan 21, 2018
64b6077
remove redis error argument
i110 Jan 21, 2018
ee3cbc0
Merge branch 'master' into i110/mruby-redis
i110 Jan 26, 2018
3ead0da
refactor redis
i110 Jan 26, 2018
a872f9d
Merge branch 'i110/asan-symbols' into i110/mruby-redis
i110 Jan 27, 2018
c3d0f85
remove unnecessary NULL checks
i110 Jan 29, 2018
05fe2a6
rename close_connection to close_and_detach_connection, and move call…
i110 Jan 29, 2018
0e7f9be
rename h2o_redis_conn_t to h2o_redis_client_t
i110 Jan 29, 2018
dcad6e5
remove unnecessary enum definition
i110 Jan 29, 2018
9460efb
re-format changes
i110 Jan 29, 2018
3c997a9
fix heap-use-after-free problem
i110 Jan 29, 2018
ee0494c
Merge branch 'master' into i110/mruby-redis
kazuho Mar 7, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'master' into i110/mruby-redis
  • Loading branch information
kazuho authored Mar 7, 2018
commit ee0494cba9bdf464685900cf9c22ee0df4d476d1
6 changes: 3 additions & 3 deletions share/h2o/mruby/preloads.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
require "bootstrap.rb"
require "acl.rb"
require "redis.rb"
require File.expand_path(File.dirname(__FILE__)) + "/bootstrap.rb"
require File.expand_path(File.dirname(__FILE__)) + "/acl.rb"
require File.expand_path(File.dirname(__FILE__)) + "/redis.rb"
include H2O::ACL
You are viewing a condensed version of this merge commit. You can view the full changes here.