Improve TweetDetail query performance

This commit is contained in:
dangered wolf 2023-11-02 23:30:49 -04:00
parent ec24895ece
commit bbefdfd400
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 8 additions and 7 deletions

View file

@ -24,7 +24,7 @@ const Experiments: { [key in Experiment]: ExperimentConfig } = {
[Experiment.TWEET_DETAIL_API]: { [Experiment.TWEET_DETAIL_API]: {
name: 'Tweet detail API', name: 'Tweet detail API',
description: 'Use Tweet Detail API (where available with elongator)', description: 'Use Tweet Detail API (where available with elongator)',
percentage: 0.75 percentage: 0.4
} }
}; };

View file

@ -20,8 +20,8 @@ export const fetchTweetDetail = async (
referrer: 'home', referrer: 'home',
with_rux_injections: false, with_rux_injections: false,
includePromotedContent: false, includePromotedContent: false,
withCommunity: true, withCommunity: false,
withBirdwatchNotes: true, withBirdwatchNotes: false,
withQuickPromoteEligibilityTweetFields: false, withQuickPromoteEligibilityTweetFields: false,
withVoice: false, withVoice: false,
withV2Timeline: true, withV2Timeline: true,
@ -29,10 +29,11 @@ export const fetchTweetDetail = async (
}) })
)}&features=${encodeURIComponent( )}&features=${encodeURIComponent(
JSON.stringify({ JSON.stringify({
responsive_web_graphql_exclude_directive_enabled: true, c9s_tweet_anatomy_moderator_badge_enabled: false,
responsive_web_graphql_exclude_directive_enabled: false,
verified_phone_label_enabled: false, verified_phone_label_enabled: false,
responsive_web_home_pinned_timelines_enabled: true, responsive_web_home_pinned_timelines_enabled: false,
creator_subscriptions_tweet_preview_api_enabled: true, creator_subscriptions_tweet_preview_api_enabled: false,
responsive_web_graphql_timeline_navigation_enabled: true, responsive_web_graphql_timeline_navigation_enabled: true,
responsive_web_graphql_skip_user_profile_image_extensions_enabled: false, responsive_web_graphql_skip_user_profile_image_extensions_enabled: false,
tweetypie_unmention_optimization_enabled: true, tweetypie_unmention_optimization_enabled: true,
@ -43,7 +44,7 @@ export const fetchTweetDetail = async (
responsive_web_twitter_article_tweet_consumption_enabled: false, responsive_web_twitter_article_tweet_consumption_enabled: false,
tweet_awards_web_tipping_enabled: false, tweet_awards_web_tipping_enabled: false,
freedom_of_speech_not_reach_fetch_enabled: true, freedom_of_speech_not_reach_fetch_enabled: true,
standardized_nudges_misinfo: true, standardized_nudges_misinfo: false,
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: false, tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled: false,
longform_notetweets_rich_text_read_enabled: true, longform_notetweets_rich_text_read_enabled: true,
longform_notetweets_inline_media_enabled: true, longform_notetweets_inline_media_enabled: true,