-1

Plz tell me--- Can we do Indexing and searching only using transport client (9300) or without using 9200 port at the endpoint? I check all documents but never see any native methods related only transport client. Help me to find out these methods.

maddy
  • 248
  • 1
  • 5
  • 16

1 Answers1

-1

The best source of information is the source code itself.

You can find the TransportClient source code here

And since TransportClient extends AbstractClient, it also has access to all inherited methods from that class, which you can discover here

Val
  • 207,596
  • 13
  • 358
  • 360
  • Thanks.. but is it possible that I dont use 9200 port in my application and do all indexing and searching via 2300 only.. even not at the endpoint. – maddy Apr 25 '16 at 10:39
  • Yes, you can do anything through the transport client (default port 9300) – Val Apr 25 '16 at 10:41
  • Is there any performance regarding matter when we use 9300 port instead 9200? – maddy Apr 25 '16 at 11:12
  • 9300 uses the TCP layer and 9200 the HTTP layer, so it means you've less overhead. – Val Apr 25 '16 at 11:17