I posted this question on StackOverflow, and the only person to answer recommended I ask these lists for more details and link to the question:<br><a href="http://stackoverflow.com/questions/16927331/postgresql-point-ops-with-gist-postgis-spatial-index" target="_blank">http://stackoverflow.com/questions/16927331/postgresql-point-ops-with-gist-postgis-spatial-index</a><br>


<br>My question is:<br><br>The <a href="http://www.postgresql.org/docs/9.2/static/release-9-0.html" rel="nofollow" target="_blank">9.0 release notes</a> for PostgreSQL states the following change:

<blockquote>
  <p>Add point_ops operator class for GiST (Teodor Sigaev)</p>
  
  <p>This feature permits GiST indexing of point columns. The index can be
  used for several types of queries such as <code>point <@ polygon</code> (point is
  in polygon). This should make many PostGIS queries faster.</p>
</blockquote>

<p>I have a very large table (millions of rows) with a <font><code>GEOMETRY(POINT,[SRID])</code></font>
 column that I sometimes compare to polygons. Do I need to do anything 
to enable this when creating the index? Do I have to use the operator indicated, or would this work with <a href="http://postgis.refractions.net/docs/ST_Contains.html" rel="nofollow" target="_blank"><code>ST_Contains</code></a> which uses <font><code>&&</code></font> internally?<br>

</p>Thanks for any help.<br>