postgresql row_to_json的妙用

postgresql row_to_json的妙用,第1张

概述posted on January 30, 2013 and written by Jack Christensen in Development A new feature in PostgreSQL 9.2 is JSON support. It includes a JSON data type and two JSON functions. These allow us to return

posted onJanuary 30,2013and written byJack ChristenseninDevelopment

A new feature in Postgresql 9.2 is JsON support. It includes a JsON data type and two JsON functions. These allow us to return JsON directly from the database server. This article covers how it is done and includes a benchmark comparing it with Traditional Rails JsON generation techniques.

How To

The simplest way to return JsON is withrow_to_Json()function. It accepts a row value and returns a JsON value.

select row_to_Json(words) from ;

This will return a single column per row in the words table.

{"ID":6013,"text":"advancement""pronunciation" However,sometimes we only want to include some columns in the JsON instead of the entire row. In theory we Could use the row constructor method.

(rowIDtext)) ;

While this does return only the ID and text columns,unfortunately it loses the fIEld names and replaces them with f1,f2,f3,etc.

"f1""f2"}

To work around this we must either create a row type and cast the row to that type or use a subquery. A subquery will typically be easIEr.

t)from (  text words) t

This results in the JsON output for which we would hope:

}

The other commonly used technique isarray_aggandarray_to_Json.array_aggis a aggregate function likesumorcount. It aggregates its argument into a Postgresql array.array_to_Jsontakes a Postgresql array and flattens it into a single JsON value.

array_to_Jsonarray_agg)))    (      words    t

This will result in a JsON array of objects:

[{6001"abaissed"},{6002"abbatial"6003"abelia" In exchange for a substantial jump in complexity,we can also use subquerIEs to return an entire object graph:

pronunciationd)))      (        part_of_speechbody        deFinitions        where word_ID=.ID        order by position asc      d    as deFinitions  words  text = 'autumn'

This Could return a result like the following:

{  : "autumn""deFinitions": [    {        "part_of_speech""noun""body""skilder wearifully uninfolded..."    "verb""intrafissural fernbird kittly..."    "adverb""infrugal lansquenet impolarizable..."    }  ]}

ObvIoUsly,the sql to generate this JsON response is far more verbose than generating it in Ruby. Let’s see what we get in exchange.

Benchmarks

I created a sample benchmark application to test multiple JsON generation approaches. The sample domain is a dictionary. The source is athttps://github.com/JackC/json_api_bench.

The first test is of an extremely light weight auto-complete search. The result set is simply an array of strings. I tested three approaches: loading the entire ActiveRecord domain model,using pluck,and using Postgresql (view source).

+-----------------------------+----------+| name                        | Reqs/Sec |+-----------------------------+----------+| Quick Search Domain         | 467.84   || Quick Search Pluck          | 496.89   || Quick Search Postgresql     | 540.54   |+-----------------------------+----------+

Pluck should probably be the preferred approach in this case. While Postgresql is about 8% faster,the code is less clear.

The next test is of a slightly richer word search. It returns an array of objects that each include text,pronunciation,part of speech,and deFinition (view source).

+-----------------------------+----------+| name                        | Reqs/Sec |+-----------------------------+----------+| Rich Search Domain          | 322.58   || Rich Search Select All      | 418.85   || Rich Search Postgresql      | 500.00   |+-----------------------------+----------+

In this case,select_all should still usually be preferred over Postgresql. The loss of clarity is not worth the 19% performance increase.

Now we get to a test of an entire object graph for a word. This returns an object with text,an array of deFinitions,an array of quotes,an array of synonyms,and an array of antonyms (view source)

+-----------------------------+----------+| name                        | Reqs/Sec |+-----------------------------+----------+| DeFinition Domain           | 130.72   || DeFinition Postgresql       | 457.14   |+-----------------------------+----------+

Now things start to get more favorable for Postgresql. In exchange for a substantial block of sql we get a 3.51x throughput increase.

Finally,we run a test of returning multiple deFinitions per call. This is a more synthetic benchmark to exercise heavy weight API responses (view source).

+-----------------------------+----------+| name                        | Reqs/Sec |+-----------------------------+----------+| Many DeFinitions Domain     | 25.82    || Many DeFinitions Postgresql | 330.58   |+-----------------------------+----------+

For a large JsON object graph Postgresql JsON generation can offer well over 12x the throughput.

Conclusions

Postgresql is always faster than Traditional Rails JsON generation,but the code is always more verbose. For simple responses that do not involve nested objects,the performance gain is insufficIEnt to warrant the loss in code clarity. As the object graph increases in size and complexity,the performance gains become more and more attractive.

总结

以上是内存溢出为你收集整理的postgresql row_to_json的妙用全部内容,希望文章能够帮你解决postgresql row_to_json的妙用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1176923.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存