codecamp

Kitex 直连访问

直连访问

在明确要访问某个下游地址时,可以选择直连访问的方式,不需要经过服务发现。

client 可以有两种形式指定下游地址:

  • 使用 WithHostPort Option,支持两种参数:
    • 普通 IP 地址,形式为 “host:port”,支持 IPv6
    • sock 文件地址,通过 UDS (Unix Domain Socket) 通信
  • 使用 WithURL Option,参数为合法的 HTTP URL 地址


Kitex 编解码协议
Kitex 连接类型
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }