Skip to content

Commit 58c83d2

Browse files
committed
docs: small changes to the README.md
1 parent 5fe0cd6 commit 58c83d2

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -269,28 +269,28 @@ There are some differences between how each operates as have their own strengths
269269
| Feature | Official Gnoland Indexer | Spectra Gnoland Indexer |
270270
| ---- | ---- | ---- |
271271
| Database | PebbleDB | Postgres+TimescaleDB |
272-
| Query data | Graphql and RPC | REST and SQL(directly in the database or via some other tool) |
273-
| Streaming data | Websocket is present over RPC endpoint | Not supported(yet) |
272+
| Query data | GraphQL and RPC | REST and SQL (directly in the database or via some other tool) |
273+
| Streaming data | WebSocket is present over RPC endpoint | Not supported (yet) |
274274
| Programming language | Go | Go |
275-
| Setup | Easy(just run CLI command `start`) | Manual setup required |
275+
| Setup | Easy (just run CLI command `start`) | Manual setup required |
276276

277277
Both offer high performance however the biggest difference here is how the data is stored and accessed.
278278
PebbleDB is a key-value DB that does offer high performance for read/write operations. Any extending of
279279
the database requires in-depth knowledge of the database and Go since official API for this database was
280280
written in Go. There might exist some third party libraries that work with PebbleDB, but they are not
281-
officially supported by the CockroachDB team. Or you might need to even use RockDB API which in theory
281+
officially supported by the CockroachDB team. Or you might need to even use RocksDB API which in theory
282282
could work.
283283

284-
The official indexer is very easy to setup. Pretty much just run the indexer and it will set up the
284+
The official indexer is very easy to set up. Pretty much just run the indexer and it will set up the
285285
database for you. The SGI requires manual setup of the database and setting up a config file. It also
286286
allows only to do a partial scan if the chain if you desire. SGI in this case requires a bit more setup.
287287

288-
TimescaleDB is a Postgres extension, so any kinda of library that works on Postgres should pretty much
288+
TimescaleDB is a Postgres extension, so any kind of library that works on Postgres should pretty much
289289
work for the TimescaleDB, which means there is no limit to which language you can use to interact with
290290
the database. You can also add new tables, indexes, and TimescaleDB continuous aggregation tables along
291291
with automation jobs all by just using SQL.
292292

293-
Official indexer does offer a variety of endpoints to query from Graphql/RPC/WS. The SGI does only have
293+
Official indexer does offer a variety of endpoints to query from GraphQL/RPC/WS. The SGI does only have
294294
REST API but if you know any programming language and a bit of SQL you should be able to extend the API
295295
or make your own custom endpoints.
296296

0 commit comments

Comments
 (0)