COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20210906231502/https://github.com/topics/caucho
Here is
1 public repository
matching this topic...
Improve this page
Add a description, image, and links to the
caucho
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
caucho
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
背景
在
service mesh环境下,需要在sidecar中解析dubbo的attachment,并根据需求添加一些自定义的参数进去,就像SetHeader一样,然后重新构建dubbo包问题
如果使用
hessian.NewDecoder,传递的参数没有对象是可以的,如果参数中有对象会报错,参考 #163 的解决办法,使用hessian.NewDecoderWithSkip可以解决,但是重新构建的时候arg类型是interface{},值是nil解决
能否多提供一个
Decode方法,直接返回[]byte内容,重新构建的时候直接encode.Append(arg)就可以重新构建dubbo包