Method: Iodine::PubSub::Redis#initialize
- Defined in:
- ext/iodine/iodine_pubsub.c
#initialize(*args) ⇒ Object
Initializes a new Iodine::PubSub::Redis engine.
Iodine::PubSub::Redis.new(url, opt = {})
use:
REDIS_URL = "redis://localhost:6379/"
Iodine::PubSub::Redis.new(REDIS_URL, ping: 50) #pings every 50 seconds
To use Redis authentication, add the password to the URL. i.e.:
REDIS_URL = "redis://redis:password@localhost:6379/"
Iodine::PubSub::Redis.new(REDIS_URL, ping: 50) #pings every 50 seconds
The options hash accepts:
:ping:: the PING interval up to 255 seconds. Default: 0 (~5 minutes).
359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 |
# File 'ext/iodine/iodine_pubsub.c', line 359
static VALUE iodine_pubsub_redis_new(int argc, VALUE *argv, VALUE self) {
if (!argc) {
rb_raise(rb_eArgError, "Iodine::PubSub::Redis.new(address, opt={}) "
"requires at least 1 argument.");
}
VALUE url = argv[0];
Check_Type(url, T_STRING);
if (RSTRING_LEN(url) > 4096) {
rb_raise(rb_eArgError, "Redis URL too long.");
}
uint8_t ping = 0;
iodine_pubsub_s *e = iodine_pubsub_CData(self);
if (!e) {
rb_raise(rb_eTypeError, "not a valid engine");
return Qnil;
}
/* extract options */
if (argc == 2) {
Check_Type(argv[1], T_HASH);
VALUE tmp = rb_hash_aref(argv[1], rb_id2sym(rb_intern2("ping", 4)));
if (tmp != Qnil) {
Check_Type(tmp, T_FIXNUM);
if (NUM2SIZET(tmp) > 255) {
rb_raise(rb_eArgError,
":ping must be a non-negative integer under 255 seconds.");
}
ping = (uint8_t)NUM2SIZET(tmp);
}
}
/* parse URL assume redis://redis:password@localhost:6379 */
fio_url_s info = fio_url_parse(RSTRING_PTR(url), RSTRING_LEN(url));
FIO_LOG_INFO("Initializing Redis engine for address: %.*s",
(int)RSTRING_LEN(url), RSTRING_PTR(url));
/* create engine */
e->engine = redis_engine_create(.address = info.host, .port = info.port,
.auth = info.password, .ping_interval = ping);
if (!e->engine) {
e->engine = &e->do_not_touch;
} else {
e->dealloc = redis_engine_destroy;
}
if (e->engine == &e->do_not_touch) {
rb_raise(rb_eArgError,
"Error initializing the Redis engine - malformed URL?");
}
return self;
(void)self;
(void)argc;
(void)argv;
}
|