Re: Re: [pgsql-zh-general] 随机字符串函数的C语言实现

Lists: pgsql-zh-general
From: Quan Zongliang <zongliang(dot)quan(at)postgresdata(dot)com>
To: "pgsql-zh-general(at)postgresql(dot)org" <pgsql-zh-general(at)postgresql(dot)org>
Subject: 随机字符串函数的C语言实现
Date: 2017-09-05 08:28:18
Message-ID: e4b2ab08-6847-e431-9ccb-d42ac805a3d7@postgresdata.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-zh-general

各位下午好
邮件列表沉寂太久,激活一下大家的情绪。

分享一个C语言实现的随机字符串函数:
PG_FUNCTION_INFO_V1(random_string);
Datum
random_string(PG_FUNCTION_ARGS)
{
int32 length = PG_GETARG_INT32(0);
int32 i;
const char chars[] =
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
char *result;

if (length < 0)
PG_RETURN_NULL();

if (length == 0)
PG_RETURN_TEXT_P(cstring_to_text(""));

result = palloc(length + 1);
if (result == NULL)
ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY),
errmsg("out of memory")));

for (i=0; i<length; i++)
{
result[i] = chars[random()%(sizeof(chars)-1)];
}
result[i] = '\0';

PG_RETURN_TEXT_P(cstring_to_text(result));
}

原文见:
https://my.oschina.net/quanzl/blog/1529438

欢迎关注我司公众号:postgresdata-news

--
权宗亮
神州飞象(北京)数据科技有限公司
我们的力量源自最先进的开源数据库PostgreSQL
zongliang(dot)quan(at)postgresdata(dot)com


From: Jaimin Pan <jaimin(dot)pan(at)gmail(dot)com>
To: Quan Zongliang <zongliang(dot)quan(at)postgresdata(dot)com>
Cc: "pgsql-zh-general(at)postgresql(dot)org" <pgsql-zh-general(at)postgresql(dot)org>
Subject: Re: [pgsql-zh-general] 随机字符串函数的C语言实现
Date: 2017-09-05 09:01:54
Message-ID: CABP8UDTSWgKpSSg2bO45t9sQatVzyasPv4Nm6rG0HPx55JKJxQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-zh-general

试一试
md5(random()::text);

select pg_backend_pid(),s,'string '|| md5(random()::text) from (select
generate_series(2000,8000,1) s) as g;
Time: 239.733 ms

2017-09-05 16:28 GMT+08:00 Quan Zongliang <zongliang(dot)quan(at)postgresdata(dot)com>:

> 各位下午好
> 邮件列表沉寂太久,激活一下大家的情绪。
>
> 分享一个C语言实现的随机字符串函数:
> PG_FUNCTION_INFO_V1(random_string);
> Datum
> random_string(PG_FUNCTION_ARGS)
> {
> int32 length = PG_GETARG_INT32(0);
> int32 i;
> const char chars[] = "0123456789ABCDEFGHIJKLMNOPQRS
> TUVWXYZabcdefghijklmnopqrstuvwxyz";
> char *result;
>
> if (length < 0)
> PG_RETURN_NULL();
>
> if (length == 0)
> PG_RETURN_TEXT_P(cstring_to_text(""));
>
> result = palloc(length + 1);
> if (result == NULL)
> ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY),
> errmsg("out of memory")));
>
> for (i=0; i<length; i++)
> {
> result[i] = chars[random()%(sizeof(chars)-1)];
> }
> result[i] = '\0';
>
> PG_RETURN_TEXT_P(cstring_to_text(result));
> }
>
> 原文见:
> https://my.oschina.net/quanzl/blog/1529438
>
> 欢迎关注我司公众号:postgresdata-news
>
> --
> 权宗亮
> 神州飞象(北京)数据科技有限公司
> 我们的力量源自最先进的开源数据库PostgreSQL
> zongliang(dot)quan(at)postgresdata(dot)com
>
>
>
> --
> Sent via pgsql-zh-general mailing list (pgsql-zh-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-zh-general
>


From: winston cheung <winston_cheung(at)163(dot)com>
To: pgsql-zh-general(at)postgresql(dot)org
Subject: Re: Re: [pgsql-zh-general] 随机字符串函数的C语言实现
Date: 2017-09-05 09:11:48
Message-ID: 73b03cf4-2254-88be-b24c-8c17e15c56a0@163.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-zh-general

权叔有性能测试么?列一下数据啊,哈哈,学习一下。

On 09/05/2017 05:01 PM, Jaimin Pan wrote:
> 试一试
> md5(random()::text);
>
>
> select pg_backend_pid(),s,'string '|| md5(random()::text) from (select
> generate_series(2000,8000,1) s) as g;
> Time: 239.733 ms
>
> 2017-09-05 16:28 GMT+08:00 Quan Zongliang
> <zongliang(dot)quan(at)postgresdata(dot)com
> <mailto:zongliang(dot)quan(at)postgresdata(dot)com>>:
>
> 各位下午好
> 邮件列表沉寂太久,激活一下大家的情绪。
>
> 分享一个C语言实现的随机字符串函数:
> PG_FUNCTION_INFO_V1(random_string);
> Datum
> random_string(PG_FUNCTION_ARGS)
> {
> int32 length = PG_GETARG_INT32(0);
> int32 i;
> const char chars[] =
> "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
> char *result;
>
> if (length < 0)
> PG_RETURN_NULL();
>
> if (length == 0)
> PG_RETURN_TEXT_P(cstring_to_text(""));
>
> result = palloc(length + 1);
> if (result == NULL)
> ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY),
> errmsg("out of memory")));
>
> for (i=0; i<length; i++)
> {
> result[i] = chars[random()%(sizeof(chars)-1)];
> }
> result[i] = '\0';
>
> PG_RETURN_TEXT_P(cstring_to_text(result));
> }
>
> 原文见:
> https://my.oschina.net/quanzl/blog/1529438
> <https://my.oschina.net/quanzl/blog/1529438>
>
> 欢迎关注我司公众号:postgresdata-news
>
> --
> 权宗亮
> 神州飞象(北京)数据科技有限公司
> 我们的力量源自最先进的开源数据库PostgreSQL
> zongliang(dot)quan(at)postgresdata(dot)com
> <mailto:zongliang(dot)quan(at)postgresdata(dot)com>
>
>
>
> --
> Sent via pgsql-zh-general mailing list
> (pgsql-zh-general(at)postgresql(dot)org
> <mailto:pgsql-zh-general(at)postgresql(dot)org>)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-zh-general
> <http://www.postgresql.org/mailpref/pgsql-zh-general>
>
>


From: Quan Zongliang <zongliang(dot)quan(at)postgresdata(dot)com>
To: Jaimin Pan <jaimin(dot)pan(at)gmail(dot)com>
Cc: "pgsql-zh-general(at)postgresql(dot)org" <pgsql-zh-general(at)postgresql(dot)org>
Subject: Re: [pgsql-zh-general] 随机字符串函数的C语言实现
Date: 2017-09-05 10:26:42
Message-ID: b737e130-2a28-f863-41ff-8ca310b1e9fd@postgresdata.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-zh-general

这样不能指定长度,返回值本身又不够长,今天测试是在看TOAST的变化。

On 2017/9/5 17:01, Jaimin Pan wrote:
> 试一试
> md5(random()::text);
>
>
> select pg_backend_pid(),s,'string '|| md5(random()::text) from (select
> generate_series(2000,8000,1) s) as g;
> Time: 239.733 ms
>
> 2017-09-05 16:28 GMT+08:00 Quan Zongliang
> <zongliang(dot)quan(at)postgresdata(dot)com <mailto:zongliang(dot)quan(at)postgresdata(dot)com>>:
>
> 各位下午好
> 邮件列表沉寂太久,激活一下大家的情绪。
>
> 分享一个C语言实现的随机字符串函数:
> PG_FUNCTION_INFO_V1(random_string);
> Datum
> random_string(PG_FUNCTION_ARGS)
> {
>         int32 length = PG_GETARG_INT32(0);
>         int32 i;
>         const char chars[] =
> "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
>         char *result;
>
>         if (length < 0)
>                 PG_RETURN_NULL();
>
>         if (length == 0)
>                 PG_RETURN_TEXT_P(cstring_to_text(""));
>
>         result = palloc(length + 1);
>         if (result == NULL)
>                 ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY),
>                                         errmsg("out of memory")));
>
>         for (i=0; i<length; i++)
>         {
>                 result[i] = chars[random()%(sizeof(chars)-1)];
>         }
>         result[i] = '\0';
>
>         PG_RETURN_TEXT_P(cstring_to_text(result));
> }
>
> 原文见:
> https://my.oschina.net/quanzl/blog/1529438
> <https://my.oschina.net/quanzl/blog/1529438>
>
> 欢迎关注我司公众号:postgresdata-news
>
> --
> 权宗亮
> 神州飞象(北京)数据科技有限公司
> 我们的力量源自最先进的开源数据库PostgreSQL
> zongliang(dot)quan(at)postgresdata(dot)com <mailto:zongliang(dot)quan(at)postgresdata(dot)com>
>
>
>
> --
> Sent via pgsql-zh-general mailing list
> (pgsql-zh-general(at)postgresql(dot)org
> <mailto:pgsql-zh-general(at)postgresql(dot)org>)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-zh-general
> <http://www.postgresql.org/mailpref/pgsql-zh-general>
>
>


From: Quan Zongliang <zongliang(dot)quan(at)postgresdata(dot)com>
To: pgsql-zh-general(at)postgresql(dot)org
Subject: Re: Re: [pgsql-zh-general] 随机字符串函数的C语言实现
Date: 2017-09-06 01:48:58
Message-ID: 26291e49-c0d2-c4f5-f72c-cb7d3844ad29@postgresdata.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-zh-general


这篇博文有简单测试:
https://my.oschina.net/quanzl/blog/1529438
天壤之别的性能差距

On 2017/9/5 17:11, winston cheung wrote:
> 权叔有性能测试么?列一下数据啊,哈哈,学习一下。
>
>
> On 09/05/2017 05:01 PM, Jaimin Pan wrote:
>> 试一试
>> md5(random()::text);
>>
>>
>> select pg_backend_pid(),s,'string '|| md5(random()::text) from (select
>> generate_series(2000,8000,1) s) as g;
>> Time: 239.733 ms
>>
>> 2017-09-05 16:28 GMT+08:00 Quan Zongliang
>> <zongliang(dot)quan(at)postgresdata(dot)com
>> <mailto:zongliang(dot)quan(at)postgresdata(dot)com>>:
>>
>> 各位下午好
>> 邮件列表沉寂太久,激活一下大家的情绪。
>>
>> 分享一个C语言实现的随机字符串函数:
>> PG_FUNCTION_INFO_V1(random_string);
>> Datum
>> random_string(PG_FUNCTION_ARGS)
>> {
>>         int32 length = PG_GETARG_INT32(0);
>>         int32 i;
>>         const char chars[] =
>> "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
>>         char *result;
>>
>>         if (length < 0)
>>                 PG_RETURN_NULL();
>>
>>         if (length == 0)
>>                 PG_RETURN_TEXT_P(cstring_to_text(""));
>>
>>         result = palloc(length + 1);
>>         if (result == NULL)
>>                 ereport(ERROR, (errcode(ERRCODE_OUT_OF_MEMORY),
>>                                         errmsg("out of memory")));
>>
>>         for (i=0; i<length; i++)
>>         {
>>                 result[i] = chars[random()%(sizeof(chars)-1)];
>>         }
>>         result[i] = '\0';
>>
>>         PG_RETURN_TEXT_P(cstring_to_text(result));
>> }
>>
>> 原文见:
>> https://my.oschina.net/quanzl/blog/1529438
>> <https://my.oschina.net/quanzl/blog/1529438>
>>
>> 欢迎关注我司公众号:postgresdata-news
>>
>> --
>> 权宗亮
>> 神州飞象(北京)数据科技有限公司
>> 我们的力量源自最先进的开源数据库PostgreSQL
>> zongliang(dot)quan(at)postgresdata(dot)com
>> <mailto:zongliang(dot)quan(at)postgresdata(dot)com>
>>
>>
>>
>> --
>> Sent via pgsql-zh-general mailing list
>> (pgsql-zh-general(at)postgresql(dot)org
>> <mailto:pgsql-zh-general(at)postgresql(dot)org>)
>> To make changes to your subscription:
>> http://www.postgresql.org/mailpref/pgsql-zh-general
>> <http://www.postgresql.org/mailpref/pgsql-zh-general>
>>
>>
>