mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-04 18:10:56 +01:00
Improve TweetDetail query performance
This commit is contained in:
parent
ec24895ece
commit
bbefdfd400
2 changed files with 8 additions and 7 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Add table
Reference in a new issue