@@ -699,19 +699,19 @@ When Hazelcast Node.js client serializes an object:
699
699
700
700
4 . If the above check fails, then it checks if it is an instance of one of the default types (see above default types).
701
701
702
- 5 . If the above check fails, then it looks for a user-specified [ Custom Serialization] ( #43 -custom-serialization ) .
702
+ 5 . If the above check fails, then it looks for a user-specified [ Custom Serialization] ( #44 -custom-serialization ) .
703
703
704
- 6 . If the above check fails, it will use the registered [ Global Serialization] ( #44 -global-serialization ) if one exists.
704
+ 6 . If the above check fails, it will use the registered [ Global Serialization] ( #45 -global-serialization ) if one exists.
705
705
706
706
7 . If the above check fails, then the Node.js client uses ` JSON Serialization ` by default.
707
707
708
708
However, ` JSON Serialization ` may not be the best way of serialization in terms of performance and interoperability between
709
709
the clients in different languages. If you want the serialization to work faster or you use the clients in different languages,
710
710
Hazelcast offers its own native serialization methods, such as
711
- [ ` IdentifiedDataSerializable ` Serialization] ( #41 -identifieddataserializable-serialization ) and
712
- [ ` Portable ` Serialization] ( #42 -portable-serialization ) .
711
+ [ ` IdentifiedDataSerializable ` Serialization] ( #42 -identifieddataserializable-serialization ) and
712
+ [ ` Portable ` Serialization] ( #43 -portable-serialization ) .
713
713
714
- Or, if you want to use your own serialization method, you can use [ Custom Serialization] ( #43 -custom-serialization ) .
714
+ Or, if you want to use your own serialization method, you can use [ Custom Serialization] ( #44 -custom-serialization ) .
715
715
716
716
> ** NOTE: Hazelcast Node.js client is a TypeScript-based project but JavaScript does not have interfaces. Therefore, some
717
717
> interfaces are given to the user by using the TypeScript files that have ` .ts ` extension. In this guide, implementing an
@@ -3567,7 +3567,7 @@ results of your query are ready, they are parsed from JSON strings and returned
3567
3567
3568
3568
For the purposes of your application, you may want to get rid of the parsing and just work with the raw JSON strings using
3569
3569
` HazelcastJsonValue ` objects. Then, you can configure your client to do so as described in the
3570
- [ JSON Serialization] ( #45 -json-serialization ) section.
3570
+ [ JSON Serialization] ( #46 -json-serialization ) section.
3571
3571
3572
3572
``` javascript
3573
3573
const client = await Client .newHazelcastClient ({
0 commit comments