forked from hazelcast/hazelcast-reference-manual
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathredirect-latest.js
2067 lines (1886 loc) · 128 KB
/
redirect-latest.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var $current = window.location.href;
var $https = $current.includes("https");
if ($https) {
var $baseurl = "https://docs.hazelcast.org"
} else {
var $baseurl = "http://docs.hazelcast.org"
}
// Docs index page
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html") {
window.location = $baseurl + "/docs/latest/manual/html/index.html";
}
// Docs 'Preface' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#preface") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Hazelcast_IMDG_Editions.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-imdg-editions") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Hazelcast_IMDG_Editions.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-imdg-architecture") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Hazelcast_IMDG_Architecture.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-imdg-plugins") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Hazelcast_IMDG_Plugins.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#licensing") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Licensing_and_Trademarks.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#trademarks") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Licensing_and_Trademarks.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#customer-support") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Customer_Support.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#release-notes") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Release_Notes.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#contributing-to-hazelcast-imdg") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Contributing_to_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#partners") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Contributing_to_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#phone-home") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Phone_Home.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#typographical-conventions") {
window.location = $baseurl + "/docs/latest/manual/html/Preface/Typographical_Conventions.html";
}
// Docs 'Document Revision History' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#document-revision-history") {
window.location = $baseurl + "/docs/latest/manual/html/Document_Revision_History.html";
}
// Docs 'Getting Started' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-started") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Installing_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#installation") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Installation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-imdg") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Installation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-imdg-enterprise") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Installation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-the-license-key") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Installation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#upgrading-from-3x") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Upgrading_From_3x.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#upgrading-from-2x") {
window.location = $baseurl + "/docs/latest/manual/html-single/index.html#upgrading-from-2x";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#starting-the-member-and-client") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Starting_The_Member_And_Client.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-the-scripts-in-the-package") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Using_The_Scripts_In_The_Package.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#deploying-on-amazon-ec2") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Deployment_Options.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#deploying-on-microsoft-azure") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Deployment_Options.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#deploying-on-pivotal-cloud-foundry") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Deployment_Options.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#deploying-using-docker") {
window.location = $baseurl + "/docs/latest/manual/html/Getting_Started/Deployment_Options.html";
}
// Docs 'Hazelcast Overview' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-overview") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Sharding_In_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sharding-in-hazelcast") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Sharding_In_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-topology") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Hazelcast_Topology.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#why-hazelcast") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Why_Hazelcast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#data-partitioning") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Data_Partitioning.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#how-the-data-is-partitioned") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Data_Partitioning.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#partition-table") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Data_Partitioning.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#repartitioning") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Data_Partitioning.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#use-cases") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Use_Cases.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#resources") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_Overview/Resources.html";
}
// Docs 'Understanding Configuration' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#understanding-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-declaratively") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Configuring_Declaratively.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#composing-declarative-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Configuring_Declaratively.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-programmatically") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Configuring_Programmatically.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-with-system-properties") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Configuring_with_System_Properties.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-within-spring-context") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Configuring_within_Spring_Context.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#checking-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Checking_Configuration.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-wildcards") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Using_Wildcards.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-variables") {
window.location = $baseurl + "/docs/latest/manual/html/Understanding_Configuration/Using_Variables.html";
}
// Docs 'Setting Up Clusters' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-up-clusters") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-cluster-members") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovery_Mechanisms.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-members-by-multicast") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovering_Members_by_Multicast.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-members-by-tcp") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovering_Members_by_TCP.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-members-within-ec2-cloud") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovery_Mechanisms.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-members-within-azure-cloud") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovery_Mechanisms.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-members-with-jclouds") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovery_Mechanisms.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#discovering-native-clients") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Discovering_Native_Clients.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#creating-cluster-groups") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Creating_Cluster_Groups.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#user-code-deployment-beta") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/User_Code_Deployment_-_BETA.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-user-code-deployment") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/User_Code_Deployment_-_BETA.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#partition-group-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Partition_Group_Configuration.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#grouping-types") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Partition_Group_Configuration.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#logging-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Logging_Configuration.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#other-network-configurations") {
window.location = $baseurl + "/docs/latest/manual/html/Setting_Up_Clusters/Other_Network_Configurations.html";
}
// Docs 'Rolling Member Upgrades' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#rolling-member-upgrades") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#terminology") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-members-compatibility-guarantees") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#rolling-upgrade-procedure") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#network-partitions-and-rolling-upgrades") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#rolling-upgrade-faq") {
window.location = $baseurl + "/docs/latest/manual/html/Rolling_Member_Upgrades.html";
}
// Docs 'Distributed Data Structures' section
// Docs 'Distributed Data Structures : Map' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#distributed-data-structures") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Getting_Map_and_Putting_Entries.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-map-and-putting-an-entry") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Getting_Map_and_Putting_Entries.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#backing-up-maps") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Backing_Up_Maps.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#map-eviction") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Map_Eviction.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#evicting-map-entries") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Map_Eviction.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-in-memory-format") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Setting_In_Memory_Format.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-high-density-memory-store-with-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Using_High-Density_Memory_Store_with_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#loading-and-storing-persistent-data") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Loading_and_Storing_Persistent_Data.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#creating-near-cache-for-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Creating_Near_Cache_for_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#locking-maps") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Locking_Maps.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#lock-split-brain-protection-with-pessimistic-locking") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Locking_Maps.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#accessing-entry-statistics") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Accessing_Entry_Statistics.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#map-listener") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Map_Listener.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-to-map-entries-with-predicates") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Listening_to_Map_entries_with_Predicates.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#removing-bulk-map-entries-with-predicates") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Removing_Bulk_Map_Entries_with_Predicates.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#adding-interceptors") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Adding_Interceptors.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#preventing-out-of-memory-exceptions") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Map/Preventing_Out_of_Memory_Exceptions.html";
}
// Docs 'Distributed Data Structures : Queue' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#queue") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Getting_a_Queue_and_Putting_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-queue-and-putting-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Getting_a_Queue_and_Putting_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#creating-an-example-queue") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Creating_an_Example_Queue.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-a-bounded-queue") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Setting_a_Bounded_Queue.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#queueing-with-persistent-datastore") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Queue_with_Persistence_Datastore.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#split-brain-protection-for-queue") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Split-Brain_Protection_for_Queue.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-queue") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Queue/Configuring_Queue.html";
}
// Docs 'Distributed Data Structures : Multimap' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#multimap") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/MultiMap.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-multimap-and-putting-an-entry") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/MultiMap.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-multimap") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/MultiMap.html";
}
// Docs 'Distributed Data Structures : Set' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#set") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Set.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-set-and-putting-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Set.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-set") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Set.html";
}
// Docs 'Distributed Data Structures : List' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#list") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/List.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-list-and-putting-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/List.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-list") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/List.html";
}
// Docs 'Distributed Data Structures : Ringbuffer' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#ringbuffer") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Getting_a_Ringbuffer_and_Reading_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-ringbuffer-and-reading-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Getting_a_Ringbuffer_and_Reading_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#adding-items-to-a-ringbuffer") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Getting_a_Ringbuffer_and_Reading_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#iqueue-vs-ringbuffer") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Getting_a_Ringbuffer_and_Reading_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-ringbuffer-capacity") {
window.location = $baseurl + "docs/latest/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#backing-up-ringbuffer") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-ringbuffer-time-to-live") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-ringbuffer-overflow-policy") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#ringbuffer-with-persistent-datastore") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Ringbuffer_with_Persistent_Datastore.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-ringbuffer-in-memory-format") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#adding-batched-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Batched_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#reading-batched-items") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Batched_Items.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-async-methods") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Using_Async_Methods.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#ringbuffer-configuration-examples") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Ringbuffer/Configuring_Ringbuffer.html";
}
// Docs 'Distributed Data Structures : Topic' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#topic") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Topic/Getting_a_Topic_and_Publishing_Messages.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-a-topic-and-publishing-messages") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Topic/Getting_a_Topic_and_Publishing_Messages.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#getting-topic-statistics") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Topic/Getting_Topic_Statistics.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#understanding-topic-behavior") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Topic/Understanding_Topic_Behavior.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-topic") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Topic/Configuring_Topic.html";
}
// Docs 'Distributed Data Structures : Reliable Topic' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#reliable-topic") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Reliable_Topic.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sample-reliable-itopic-code") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Reliable_Topic.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#slow-consumers") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Reliable_Topic.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-reliable-topic") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Reliable_Topic.html";
}
// Docs 'Distributed Data Structures : Lock' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#lock") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-try-catch-blocks-with-locks") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#releasing-locks-with-trylock-timeout") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#avoiding-waiting-threads-with-lease-time") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#understanding-lock-behavior") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#synchronizing-threads-with-icondition") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#split-brain-protection-for-lock") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#lock-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Lock.html";
}
// Docs 'Distributed Data Structures : IAtomicLong' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#iatomiclong") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicLong.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sending-functions-to-iatomiclong") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicLong.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#executing-functions-on-iatomiclong") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicLong.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#reasons-to-use-functions-with-iatomic") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicLong.html";
}
// Docs 'Distributed Data Structures : ISemaphore' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#isemaphore") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ISemaphore.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#controlling-thread-counts-with-permits") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ISemaphore.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#example-semaphore-code") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ISemaphore.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-semaphore") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ISemaphore.html";
}
// Docs 'Distributed Data Structures : IAtomicReference' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#iatomicreference") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicReference.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sending-functions-to-iatomicreference") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicReference.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-iatomicreference") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IAtomicReference.html";
}
// Docs 'Distributed Data Structures : ICountDownLatch' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#icountdownlatch") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ICountDownLatch.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#gate-keeping-concurrent-activities") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ICountDownLatch.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#recovering-from-failure") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ICountDownLatch.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-icountdownlatch") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/ICountDownLatch.html";
}
// Docs 'Distributed Data Structures : IDGenerator' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#idgenerator") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IdGenerator.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#generating-cluster-wide-ids") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IdGenerator.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#unique-ids-and-duplicate-ids") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/IdGenerator.html";
}
// Docs 'Distributed Data Structures : Replicated Map' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#replicated-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#replicating-instead-of-partitioning") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#example-replicated-map-code") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#considerations-for-replicated-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuration-design-for-replicated-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-replicated-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-entrylistener-on-replicated-map") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Replicated_Map.html";
}
// Docs 'Distributed Data Structures : Cardinality Estimator Service' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#cardinality-estimator-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Cardinality_Estimator_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#cardinality-estimator-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Cardinality_Estimator_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#examples") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Data_Structures/Cardinality_Estimator_Service.html";
}
// Docs 'Distributed Events' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#distributed-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/index.html";
}
// Docs 'Distributed Events : Event Listeners for Hazelcast Members' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#event-listeners-for-hazelcast-members") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Member_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-member-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Member_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-distributed-object-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Distributed_Object_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-migration-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Migration_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-partition-lost-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Partition_Lost_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-lifecycle-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Lifecycle_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-map-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Distributed_Object_Events/Listening_for_Map_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-multimap-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Distributed_Object_Events/Listening_for_MultiMap_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-item-events") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Distributed_Object_Events/Listening_for_Item_Events.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-topic-messages") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Distributed_Object_Events/Listening_for_Topic_Messages.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#listening-for-clients") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Cluster_Events/Listening_for_Clients.html";
}
// Docs 'Distributed Events : Event Listeners for Hazelcast Clients' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#event-listeners-for-hazelcast-clients") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Event_Listeners_for_Clients.html";
}
// Docs 'Distributed Events : Global Event Configuration' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#global-event-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Events/Global_Event_Configuration.html";
}
// Docs 'Distributed Computing' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#distributed-computing") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/index.html";
}
// Docs 'Distributed Computing : Executor Service' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Implementing_a_Callable_Task.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-a-callable-task") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Implementing_a_Callable_Task.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-a-runnable-task") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Implementing_a_Runnable_Task.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#scaling-the-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Scaling_the_Executor_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#executing-code-in-the-cluster") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Executing-Code_in_the_Cluster.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#canceling-an-executing-task") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Canceling_an_Executing_Task.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#callback-when-task-completes") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Callback_When_Task_Completes.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#selecting-members-for-task-execution") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Selecting_Members_for_Task_Execution.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Executor_Service/Configuring_Executor_Service.html";
}
// Docs 'Distributed Computing : Durable Executor Service' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#durable-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Durable_Executor_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-durable-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Durable_Executor_Service.html";
}
// Docs 'Distributed Computing : Scheduled Executor Service' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#scheduled-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Scheduled_Executor_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#scheduled-executor-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Scheduled_Executor_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-scheduled-executor-service") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Scheduled_Executor_Service.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#examples") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Scheduled_Executor_Service.html";
}
// Docs 'Distributed Computing : Entry Processor' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#entry-processor") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Performing_Fast_In-Memory_Map_Operations.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#performing-fast-in-memory-map-operations") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Performing_Fast_In-Memory_Map_Operations.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-indexes") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Performing_Fast_In-Memory_Map_Operations.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-object-in-memory-format") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Performing_Fast_In-Memory_Map_Operations.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#entryprocessor-interface") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Entry_Processor_Interface.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#processing-backup-entries") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Processing_Backup_Entries.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#creating-an-entry-processor") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Creating_a_Sample_Entry_Processor.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#abstract-entry-processor") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Abstract_Entry_Processor.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#entry-processor-performance-optimizations") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Computing/Entry_Processor/Entry_Processor_Optimizations.html";
}
// Docs 'Distributed Query' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#distributed-query") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/index.html";
}
// Docs 'Distributed Query : How Distributed Query Works' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#how-distributed-query-works") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#employee-map-query-example") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Employee_Map_Query_Example.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#querying-with-criteria-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Querying_with_Criteria_API.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#querying-with-sql") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Querying_with_SQL.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#filtering-with-paging-predicates") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Filtering_with_Paging_Predicates.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#indexing-queries") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Indexing_Queries.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-query-thread-pool") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/How_Distributed_Query_Works/Configuring_Query_Thread_Pool.html";
}
// Docs 'Distributed Query : Querying in Collections and Arrays' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#querying-in-collections-and-arrays") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Querying_in_Collections_and_Arrays/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#indexing-in-collections-and-arrays") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Querying_in_Collections_and_Arrays/Indexing_in_Collections_and_Arrays.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#corner-cases") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Querying_in_Collections_and_Arrays/Corner_Cases.html";
}
// Docs 'Distributed Query : Custom Attributes' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#custom-attributes") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-a-valueextractor") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/Implementing_a_ValueExtractor.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#extraction-arguments") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/Extraction_Arguments.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-a-custom-attribute-programmatically") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/Configuring_a_Custom_Attribute_Programmatically.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-a-custom-attribute-declaratively") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/Configuring_a_Custom_Attribute_Declaratively.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#indexing-custom-attributes") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Custom_Attributes/Indexing_Custom_Attributes.html";
}
// Docs 'Distributed Query : MapReduce' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#mapreduce") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/MapReduce/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#understanding-mapreduce") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/MapReduce/Understanding_MapReduce.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-the-mapreduce-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/MapReduce/Using_the_MapReduce_API.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-mapreduce-architecture") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/MapReduce/Hazelcast_MapReduce_Architecture.html";
}
if ($current == $baseurl + "http://docs.hazelcast.org/docs/latest/manual/html-single/index.html#mapreduce-deprecation") {
window.location = $baseurl + "http://docs.hazelcast.org/docs/latest-development/manual/html/Distributed_Query/MapReduce/MapReduce_Deprecation.html";
}
// Docs 'Distributed Query : Aggregators' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#aggregators") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Aggregators/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#aggregations-basics") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Aggregators/Aggregations_Basics.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#using-the-aggregations-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Aggregators/Using_the_Aggregations_API.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#aggregations-examples") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Aggregators/Aggregations_Examples.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-aggregations") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Aggregators/Implementing_Aggregations.html";
}
// Docs 'Distributed Query : Fast-Aggregations' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#fast-aggregations") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Fast_Aggregations/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#aggregator-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Fast_Aggregations/Aggregator_API.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sample-implementation") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Fast_Aggregations/Sample_Implementation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#built-in-aggregations") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Fast_Aggregations/Built-In_Aggregations.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuration-options") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Fast_Aggregations/Configuration_Options.html";
}
// Docs 'Distributed Query : Projections' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#projections") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Projections/index.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#projections-api") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Projections/Projections_API.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#sample-implementation") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Projections/Sample_Implementation.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#built-in-projections") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Projections/Built-In_Projections.html";
}
// Docs 'Distributed Query : Continuous Query Cache' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#continuous-query-cache") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Continuous_Query_Cache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#keeping-query-results-local-and-ready") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Continuous_Query_Cache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#accessing-continuous-query-cache-from-member") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Continuous_Query_Cache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#accessing-continuous-query-cache-from-client-side") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Continuous_Query_Cache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#features-of-continuous-query-cache") {
window.location = $baseurl + "/docs/latest/manual/html/Distributed_Query/Continuous_Query_Cache.html";
}
// Docs 'Transactions' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#transactions") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Creating_a_Transaction_Interface.html";
}
// Docs 'Transactions : Creating a Transaction Interface' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#creating-a-transaction-interface") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Creating_a_Transaction_Interface.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#queuesetlist-vs-mapmultimap") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Creating_a_Transaction_Interface.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#one-phase-vs-two-phase") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Creating_a_Transaction_Interface.html";
}
// Docs 'Transactions : Providing XA Transactions' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#providing-xa-transactions") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Providing_XA_Transactions.html";
}
// Docs 'Transactions : Integrating into J2EE' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#integrating-into-j2ee") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Integrating_into_Java_EE.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#integrating-into-java-ee") {
window.location = $baseurl + "/docs/latest/manual/html/Transactions/Integrating_into_Java_EE.html";
}
// Docs 'Hazelcast JCache' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-jcache") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Overview.html";
}
// Docs 'Hazelcast JCache : JCache Overview' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-overview") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Overview.html";
}
// Docs 'Hazelcast JCache : JCache Setup and Configuration' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-setup-and-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Setup_and_Configuration/Setting_your_Application.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#setting-up-your-application") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Setup_and_Configuration/Setting_your_Application.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#example-jcache-application") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Setup_and_Configuration/Example_JCache_Application.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-for-jcache") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Setup_and_Configuration/Configuring_for_JCache.html";
}
// Docs 'Hazelcast JCache : JCache Providers' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-providers") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_Providers/Configuring_JCache_Providers.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-jcache-provider") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_Providers/Configuring_JCache_Providers.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-jcache-with-client-provider") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_Providers/Configuring_JCache_with_Client_Provider.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#configuring-jcache-with-server-provider") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_Providers/Configuring_JCache_with_Server_Provider.html";
}
// Docs 'Hazelcast JCache : JCache API' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-api") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/JCache_API_Application_Example.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-api-application-example") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/JCache_API_Application_Example.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-base-classes") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/JCache_Base_Classes.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-factory-and-factorybuilder") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_Factory_and_FactoryBuilder.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-cacheloader") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_CacheLoader.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#cachewriter") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_CacheWriter.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-entryprocessor") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_Entry_Processor.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#cacheentrylistener") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_CacheEntryListener.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#expirepolicy") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/JCache_API/Implementing_ExpirePolicy.html";
}
// Docs 'Hazelcast JCache : JCache - Hazelcast Instance Integration' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-hazelcast-instance-integration") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Integrating_JCache_with_Hazelcast_Instance.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-and-hazelcast-instance-awareness") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Integrating_JCache_with_Hazelcast_Instance.html";
}
// Docs 'Hazelcast JCache : Hazelcast JCache Extension - ICache' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hazelcast-jcache-extension-icache") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Scoping_to_Join_Clusters.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#scoping-to-join-clusters") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Scoping_to_Join_Clusters.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#namespacing") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Namespacing.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#retrieving-an-icache-instance") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Retrieving_an_ICache_Instance.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#icache-configuration") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Configuring_ICache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#icache-async-methods") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/ICache_Async_Methods.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#defining-a-custom-expirypolicy") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Defining_a_Custom_Expiry_Policy.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-eviction") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/JCache_Eviction.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-near-cache") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/JCache_Near_Cache.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#icache-convenience-methods") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/ICache_Convenience_Methods.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#implementing-backupawareentryprocessor") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/Implementing_BackupAwareEntryProcessor.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#icache-partition-lost-listener") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/ICache_Partition_Lost_Listener.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jcache-split-brain") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Hazelcast_JCache_Extension-ICache/JCache_Split-Brain.html";
}
// Docs 'Hazelcast JCache : Testing for JCache Specification Compliance' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#testing-for-jcache-specification-compliance") {
window.location = $baseurl + "/docs/latest/manual/html/Hazelcast_JCache/Testing_for_JCache_Specification_Compliance.html";
}
// Docs 'Integrated Clustering' section
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#integrated-clustering") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Hibernate_Second_Level_Cache.html";
}
// Docs 'Integrated Clustering : Hibernate Second Level Cache' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#hibernate-second-level-cache") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Hibernate_Second_Level_Cache.html";
}
// Docs 'Integrated Clustering : Web Session Replication' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#web-session-replication") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Replicating_Web_Sessions.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#filter-based-web-session-replication") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Replicating_Web_Sessions.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#tomcat-based-web-session-replication") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Replicating_Web_Sessions.html";
}
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#jetty-based-web-session-replication") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Replicating_Web_Sessions.html";
}
// Docs 'Integrated Clustering : Spring Integration' subsection
if ($current == $baseurl + "/docs/latest/manual/html-single/index.html#spring-integration") {
window.location = $baseurl + "/docs/latest/manual/html/Integrated_Clustering/Integrating_with_Spring/Configuring_Spring.html";