मेरे पास पर्ल में लिखित एक नॉन- फोर्किंग गेम डेमॉन है , जो एक पोस्टग्रेक्यूएल 9.3 डेटाबेस में खिलाड़ी आँकड़े लिखने के लिए एक्यूनिक प्रश्नों का उपयोग करता है। लेकिन जब मुझे डेटाबेस से कुछ पढ़ने की ज़रूरत होती है (जैसे कि यदि किसी खिलाड़ी पर प्रतिबंध है या यदि खिलाड़ी के पास वीआईपी स्थिति है), तो मैं तुल्यकालिक प्रश्नों का उपयोग करता हूं।
यह तब तक खेल को कम समय के लिए रोक देता है, जब तक कि डेटाबेस से मूल्य को पढ़ा नहीं जाता है।
मैं पढ़ने के मूल्यों के लिए async प्रश्नों का उपयोग करने के लिए अपने खेल डेमॉन को फिर से नहीं लिख सकता (मैंने कोशिश की, लेकिन इसमें बहुत सारे बदलावों की आवश्यकता थी), इसलिए मेरा सवाल है : क्या यह कई असंबंधित प्रश्नों को संयोजित करने के लिए समझ में आएगा (जब मुझे एक नया खिलाड़ी बनाना होगा कनेक्ट करता है) 1 प्रक्रिया के लिए और मैं अपने पर्ल प्रोग्राम में एक ही समय में कई मान कैसे लौटा सकता हूं?
मेरे वर्तमान प्रश्न सभी एक खिलाड़ी आईडी को पैरामीटर के रूप में लेते हैं और 1 मान लौटाते हैं:
-- Has the player been banned?
select true from pref_ban where id=?
-- What is the reputation of this player?
select
count(nullif(nice, false)) -
count(nullif(nice, true)) as rep
from pref_rep where id=?
-- Is he or she a special VIP player?
select vip > now() as vip from pref_users where id=?
-- How many games has the player played to the end?
select completed from pref_match where id=?
उपरोक्त प्रश्नों को संयोजित करने के लिए मुझे संभवतः इस तरह की प्रक्रिया की आवश्यकता है:
create or replace function get_user_info(_id varchar) returns XXX as $BODY$
declare
is_banned boolean;
reputation integer;
is_vip boolean;
completed_games integer;
begin
select 1 into is_banned from pref_ban where id=_id;
select
count(nullif(nice, false)) -
count(nullif(nice, true))
into reputation
from pref_rep where id=_id;
select vip > now() into is_vip from pref_users where id=_id;
select completed into completed_games from pref_match where id=_id;
return XXX; /* How to return 4 values here? */
end;
$BODY$ language plpgsql;
कृपया उपरोक्त प्रक्रिया को ठीक से घोषित करने में मेरी मदद करें।
NULL
याTRUE
मेरे मेंis_banned
इस कथन से चर:select true into is_banned from pref_ban where id=_id
। वहाँ करने के लिए इसे बदलने के लिए एक रास्ता हैFALSE
याTRUE
?