نتایج جستجو برای: paging

تعداد نتایج: 2357  

Journal: :Computer Networks 2006
Sangheon Pack Kyoungae Kim Yanghee Choi

In this paper, we propose a cost effective IP paging protocol, which can be used for terminal paging in next-generation wireless IP networks. In the existing IP paging protocols, a paging request packet is delivered to access routers belonging to a paging area by unicast or multicast. However, unicast and multicast result in higher cost, so that we present a selective paging algorithm utilizing...

2011
Pragyan Acharya Sudhansu Sekhar Singh

In a high-capacity cellular network with limited spectral resources, it is desirable to minimize the radio bandwidth costs associated with paging while locating mobile users. Reduction of communication overhead has become a burning issue of today. It induces the intellects to innovate some means which are cost reducing by nature. Location management aims to reduce this overhead through predicti...

2004
Kyoungae Kim Sangheon Pack Yanghee Choi

For more scalable mobile services, it is important to reduce the signaling cost for location management. In this paper, we propose a cost effective IP paging scheme utilizing explicit multicast (xcast). Xcast is a new kind of multicast scheme for small sized groups which uses unicast with low maintenance overhead. In terms of the paging algorithm, we use a selective paging scheme to minimize th...

2013
Jeman Park Inwhee Joe

Significant IP mobility mechanisms have been designed to minimize the handover overhead of mobile nodes. Although many efficient algorithms such as Mobile IP, HMIP and PMIP have been proposed, they did not attempt to upgrade their paging mechanisms that also heavily affect the power consumption of mobile nodes. Considering a good paging scheme is important because more than 95% of mobile nodes ...

Journal: :Wireless Networks 2006
Jiang Xie

Multi-step paging has been widely proposed in personal communications services (PCS) systems to reduce the signaling overheads. Similar ideas can be applied to Mobile IP to provide IP paging services. However, current proposed multi-step paging schemes are user dependent under which the partition of paging areas and the selection of paging sequence are different for each user. The performance o...

Journal: :ACM Transactions on Algorithms 2022

In this article, we initiate the study of weighted paging problem with predictions. This continues recent line work in online algorithms predictions, particularly that Lykouris and Vassilvitski (ICML 2018) Rohatgi (SODA 2020) on unweighted We show unlike paging, neither a fixed lookahead nor knowledge next request for every page is sufficient information an algorithm to overcome existing lower ...

2000
G. L. Lyberopoulos J. G. Markoulidakis D. V. Polymeros D. F. Tsirkas E. D. Sykas

The necessity for employing various location management procedures, in conjunction with the millions of users expected to subscribe to third generation mobile telecommunication systems, will generate a huge amount of signalling load. In this paper, we propose a method which aims at the significant reduction of the signalling overhead on the radio link produced by the paging procedure compared t...

2004
Hung Tuan Do Yoshikuni Onozato

This paper presents a comparative analysis on the signaling cost functions of Mobile IP (MIP) with different paging protocols and schemes and investigates constructing optimal paging areas using discrete system model as a mobility model. In wireless mobile Internet, mobile users often visit foreign networks that might be far away from their home networks and the occurrences of their inter-domai...

Journal: :IEEE Trans. Vehicular Technology 2003
Chang Sup Sung Hyoun Chul Rim Jung Sup Lee

This paper considers a paging problem in the optical feeder microcellular system where group simulcasting and dynamic channel allocation technologies are incorporated. The objective is to propose an effective paging procedure whose performance is measured in terms of paging load, average paging delay, and paging success probability. In the paging procedure, paging signals are transmitted via gr...

Journal: :Canadian Urological Association Journal 2013

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->