Skip to content

Commit

Permalink
fixed spelling.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbasa committed Jan 22, 2024
1 parent f0f2e48 commit 6ce32a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A 120,000+ sample Address Data is provided to test the Matching Rate of this geo
To install, run the included file `pgg_benchmark.sql` using `pgsql` on a database with pg_geocoder fully installed.

```shell
pgsql -f pgg_benchmark.sql addresses2020
psql -f pgg_benchmark.sql addresses2020
```

This will create a `pgg_benchmark` table and populate it with the addresses, then add a `gc` column of type `geores` to contain the geocoder reult information. Finally, the entire addresses will be geocoded.
Expand All @@ -20,7 +20,7 @@ select (gc).code,address,(gc).x,(gc).y from pgg_benchmark where (gc).code <= 2 a

### Benchmarkong Geocoding Rate

To get the time it takes to geocode the entire table, set the `\timing` pgsql timing feature to on amd then geocode the table using SQL's `update` command.
To get the time it takes to geocode the entire table, set the `\timing` psql timing feature to on amd then geocode the table using SQL's `update` command.

```sql
\timing on
Expand Down

0 comments on commit 6ce32a9

Please sign in to comment.