Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1078437
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T21:43:27+00:00 2026-05-16T21:43:27+00:00

In a python based facebook application on GAE, i want to check which friends

  • 0

In a python based facebook application on GAE, i want to check which friends of current user have “marked” a web page or not.

For this i have to run as many DB queries as the number of friends (say 100)
I fear this may run into “timeout” because of large no of queries.

Google DOCs suggest that “list” queries run in parallel, will this save time ??
Also list has a limit of 30, so i have to make 2 or 3 queries of list type.

Please suggest a better way if possible, using task ques or something….

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T21:43:28+00:00Added an answer on May 16, 2026 at 9:43 pm

    You can fetch up to 1000 entities in parallel if you already know their keys or their key names.

    There are a few ways to solve your specific problem. Here are is one.

    Let’s assume that when a user “marks” a web page, you create an entity with a key_name that derives from a user’s facebook id and the page key.

    class PageMarker(db.Model):
        user = db.ReferenceProperty(AppUser)
        ....
        @classmethod
        def mark_page(cls, user, page_key):
            marker = cls.get_or_insert("%s_%s" % (user.facebook_id, 
                                                 page_key, user=user)
    

    This allows you to fetch all the users who marked a page in parallel:

    key_names = ["%s_%s" % (friend.facebook_id, page_key) for friend in friends]
    markers = db.get(key_names)
    # Use get_value_for_datastore to get the entity key without making a trip to the 
    # datastore
    friends_who_bookmarked_keys = [marker.__class__.user.get_value_for_datastore(marker)\
                              for marker in markers]
    friends = db.get(friends_who_bookmarked_keys)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a python based application which works like a feed aggregator and needs
I develop a Python-based drawing program, Whyteboard . I have tools that the user
For our company I'd like to have a Python based IRC bot which checks
I have a working Python based program that I want to run as a
I have this Python based service daemon which is doing a lot of multiplexed
I have a python based tkinter script which executes some commands using subprocess module.
I am to develop a Python-based Application for people with motion problems. I have
I have a web application im currently working on in python. I'm using Django
We have: A Python based server (A) A running command-line application (on the same
I have a python-based GTK application that loads several modules. It is run from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.