kafka只接收bytes字节数组,所以自定义序列化器内部实现需按照bytes字节数组转换为标准。 重点:本例子只是提供参考怎样写自定义序列化器,因为关系到性能,一般默认使用StringSerializer即可,效率很高。 1) 自定义序列化类,转换成bytes字节数组: import cn.enj ...
分类:
其他好文 时间:
2020-06-25 13:42:15
阅读次数:
81
struct msghdr 结构体 struct iovec { /* Scatter/gather arrayitems */ void *iov_base; /*Starting address */ size_t iov_len; /* Number of bytes to transfer* ...
分类:
其他好文 时间:
2020-06-24 23:25:42
阅读次数:
75
FormCreate 加一条 ReportMemoryLeaksOnShutdown:=true; 退出程序的时候,如果有内存泄漏,会弹出一个对话框. *1就是有1个,3就是有3个,2就是有2个 13 - 20 bytes: TJSONNumber x 1, TJSONObject x 1, TJS ...
##日志格式 '$remote_addr - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" "$http_x_forwarded_for"' 首先把字 ...
分类:
其他好文 时间:
2020-06-24 14:24:57
阅读次数:
55
错误提示 redis.exceptions.DataError: Invalid input of type: 'QiubaiproItem'. Convert to a bytes, string, int or float first. 原因: Python的第三方库redis升级到3.0后仅接 ...
分类:
其他好文 时间:
2020-06-23 21:08:04
阅读次数:
186
bytes类型1.字符寸硬盘 要变成bytes2.网络传输 字符 要变成bytes 数据存到硬盘,硬盘只能存储2进制 2进制-》十进制-》asscii/gbk/utf-8/unicode 数据往硬盘上村,就要以相应的编码转成2进制后存储 文字-》utf-8/gbk-》2进制 图片-》jpg/png- ...
分类:
其他好文 时间:
2020-06-21 09:52:06
阅读次数:
62
1 string postData = "appKey=" + appKey;//参数 2 postData += ("&appSecret=" + appSecret); 3 4 var request = (HttpWebRequest)WebRequest.Create(url); 5 req ...
分类:
Web程序 时间:
2020-06-20 18:54:41
阅读次数:
88
写了一个扩展方法的代码如下: 插入图片主方法代码: 1 /// <summary> 2 /// 插入图片 3 /// </summary> 4 /// <param name="worksheet"></param> 5 /// <param name="imageBytes"></param> 6 ...
分类:
其他好文 时间:
2020-06-20 17:08:51
阅读次数:
162
CGAL Polygon mesh processing named parameters cgal文档见:https://doc.cgal.org/latest/Polygon_mesh_processing/group__pmp__namedparameters.html 本文对named pa ...
分类:
其他好文 时间:
2020-06-20 13:46:43
阅读次数:
56
1、MD5加密 using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.Cryptography; using System.Text; usi ...