Will_paginate和geokit misbehavior(双重查询)

时间:2010-06-04 02:30:02

标签: ruby-on-rails activerecord will-paginate geokit

我正在使用will_paginate对我的geokit搜索结果进行分页。但是,在使用以下will_paginate调用时,在查看日志时它会使geokit查询加倍:

@posts = Post.paginate :page => params[:page], :per_page => 1, 
                        :origin => @search, :within => @miles, :include => :user

这是原始的非分页调用,它按预期工作(单个查询):

@posts = Post.find(:all, :origin => @search, :within => @miles, :include => :user)

以下是使用第一个will_paginate调用时的日志输出:

Processing PostsController#search (for 127.0.0.1 at 2010-06-03 22:10:29) [POST]
  Parameters: {"commit"=>"Search", "action"=>"search", "authenticity_token"=>"K9Btfu6p7pz2mt+lWH0Fx0O7qj+0QY21JpfgyWT738I=", "controller"=>"posts", "location"=>"new york"}
Google geocoding. Address: new york. Result: <?xml version="1.0" encoding="UTF-8" ?>
<kml xmlns="http://earth.google.com/kml/2.0"><Response>
  <name>new york</name>
  <Status>
    <code>200</code>
    <request>geocode</request>
  </Status>
  <Placemark id="p1">
    <address>New York, NY, USA</address>
    <AddressDetails Accuracy="4" xmlns="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0"><Country><CountryNameCode>US</CountryNameCode><CountryName>USA</CountryName><AdministrativeArea><AdministrativeAreaName>NY</AdministrativeAreaName><SubAdministrativeArea><SubAdministrativeAreaName>New York</SubAdministrativeAreaName><Locality><LocalityName>New York</LocalityName></Locality></SubAdministrativeArea></AdministrativeArea></Country></AddressDetails>
    <ExtendedData>
      <LatLonBox north="40.8494506" south="40.5788125" east="-73.7498541" west="-74.2620917" />
    </ExtendedData>
    <Point><coordinates>-74.0059729,40.7142691,0</coordinates></Point>
  </Placemark>
</Response></kml>
  Post Load (0.7ms)   SELECT *, 
 (ACOS(least(1,COS(0.710598048337988)*COS(-1.2916478932467)*COS(RADIANS(posts.lat))*COS(RADIANS(posts.lng))+
 COS(0.710598048337988)*SIN(-1.2916478932467)*COS(RADIANS(posts.lat))*SIN(RADIANS(posts.lng))+
 SIN(0.710598048337988)*SIN(RADIANS(posts.lat))))*3963.19)
 AS distance FROM `posts` WHERE (((posts.lat>40.352844467866 AND posts.lat<41.075693732134 AND posts.lng>-74.4827993840952 AND posts.lng<-73.5291464159048)) AND (
 (ACOS(least(1,COS(0.710598048337988)*COS(-1.2916478932467)*COS(RADIANS(posts.lat))*COS(RADIANS(posts.lng))+
 COS(0.710598048337988)*SIN(-1.2916478932467)*COS(RADIANS(posts.lat))*SIN(RADIANS(posts.lng))+
 SIN(0.710598048337988)*SIN(RADIANS(posts.lat))))*3963.19)
 <= 25)) LIMIT 0, 1
  Post Columns (2.4ms)   SHOW FIELDS FROM `posts`
  User Columns (2.2ms)   SHOW FIELDS FROM `users`
  User Load (0.4ms)   SELECT * FROM `users` WHERE (`users`.`id` = 1) 
Google geocoding. Address: new york. Result: <?xml version="1.0" encoding="UTF-8" ?>
<kml xmlns="http://earth.google.com/kml/2.0"><Response>
  <name>new york</name>
  <Status>
    <code>200</code>
    <request>geocode</request>
  </Status>
  <Placemark id="p1">
    <address>New York, NY, USA</address>
    <AddressDetails Accuracy="4" xmlns="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0"><Country><CountryNameCode>US</CountryNameCode><CountryName>USA</CountryName><AdministrativeArea><AdministrativeAreaName>NY</AdministrativeAreaName><SubAdministrativeArea><SubAdministrativeAreaName>New York</SubAdministrativeAreaName><Locality><LocalityName>New York</LocalityName></Locality></SubAdministrativeArea></AdministrativeArea></Country></AddressDetails>
    <ExtendedData>
      <LatLonBox north="40.8494506" south="40.5788125" east="-73.7498541" west="-74.2620917" />
    </ExtendedData>
    <Point><coordinates>-74.0059729,40.7142691,0</coordinates></Point>
  </Placemark>
</Response></kml>
  SQL (0.4ms)   SELECT count(*) AS count_all FROM `posts` WHERE (((posts.lat>40.352844467866 AND posts.lat<41.075693732134 AND posts.lng>-74.4827993840952 AND posts.lng<-73.5291464159048)) AND (
 (ACOS(least(1,COS(0.710598048337988)*COS(-1.2916478932467)*COS(RADIANS(posts.lat))*COS(RADIANS(posts.lng))+
 COS(0.710598048337988)*SIN(-1.2916478932467)*COS(RADIANS(posts.lat))*SIN(RADIANS(posts.lng))+
 SIN(0.710598048337988)*SIN(RADIANS(posts.lat))))*3963.19)
 <= 25)) 
Rendering template within layouts/application

正如您所看到的,KML / XML和SQL查询加倍。知道发生了什么以及如何解决它?谢谢!

托尼

1 个答案:

答案 0 :(得分:0)

实际上这是标准行为。 will_paginate首先计算记录数,然后检索20行,具体取决于页面上的可见页面和行数 (所以查询不完全相同)。

需要计数才能显示页数。

但是你的日志记录对我来说并不完全有意义,因为will_paginate查询会将数量限制为20(或任何页面大小),所显示的查询也不完全相同:例如,我看到不同的条件。